From 50690176c3d7fbf4c8a17280c37fd71b8f2c6d56 Mon Sep 17 00:00:00 2001 From: George Blue Date: Tue, 8 Aug 2023 16:50:55 +0100 Subject: [PATCH] chore: update test matrix for Go 1.21 (#689) Go 1.21 has just been released. Implicitly, Go 1.19 is now out of support. --- .github/workflows/test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 24eaed346..be50acc22 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -9,14 +9,14 @@ jobs: steps: - uses: actions/setup-go@v4 with: - go-version: '1.19' + go-version: '1.20' - uses: actions/checkout@v3 - run: go mod tidy && git diff --exit-code go.mod go.sum build: runs-on: ubuntu-latest strategy: matrix: - version: [ '1.19', '1.20' ] + version: [ '1.20', '1.21' ] name: Go ${{ matrix.version }} steps: - uses: actions/setup-go@v4