From 86bffd62437a3c437c0b84d5d5ab244824e762fc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Mart=C3=AD?= Date: Fri, 16 Aug 2024 23:17:52 +0100 Subject: [PATCH] CI: drop Go 1.21, add Go 1.23 Forgot to do this in an earlier commit when we started requiring go1.22. --- .github/workflows/test.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 5eb4db9..d7da490 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -4,7 +4,7 @@ jobs: test: strategy: matrix: - go-version: [1.21.x, 1.22.x] + go-version: [1.22.x, 1.23.x] os: [ubuntu-latest, macos-latest, windows-latest] runs-on: ${{ matrix.os }} steps: @@ -17,7 +17,7 @@ jobs: # Static checks from this point forward. Only run on one Go version and on # Linux, since it's the fastest platform, and the tools behave the same. - - if: matrix.os == 'ubuntu-latest' && matrix.go-version == '1.22.x' + - if: matrix.os == 'ubuntu-latest' && matrix.go-version == '1.23.x' run: diff <(echo -n) <(gofmt -s -d .) - - if: matrix.os == 'ubuntu-latest' && matrix.go-version == '1.22.x' + - if: matrix.os == 'ubuntu-latest' && matrix.go-version == '1.23.x' run: go vet ./...