From 04fdd1df2f964dbce983665926fe3438b2e0498d Mon Sep 17 00:00:00 2001 From: Lightning Date: Mon, 4 Dec 2023 13:20:28 +0100 Subject: [PATCH] bump go versions --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7169a4e..4ca002a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,7 +9,7 @@ jobs: - uses: actions/checkout@v3 - uses: actions/setup-go@v3 with: - go-version: "1.20" + go-version: "1.21" - name: Check diff between gofmt and code run: diff <(gofmt -d .) <(echo -n) @@ -17,7 +17,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - go-version: ["1.18", "1.19", "1.20"] + go-version: ["1.20", "1.21"] steps: - uses: actions/checkout@v3 - uses: actions/setup-go@v3 @@ -32,7 +32,7 @@ jobs: - uses: actions/checkout@v3 - uses: actions/setup-go@v4 with: - go-version: "1.20" + go-version: "1.21" cache: false - name: golangci-lint uses: golangci/golangci-lint-action@v3