From ce78ac9dc66ca4bbe2ca17fd2b0589e51ff02e83 Mon Sep 17 00:00:00 2001 From: George Blue Date: Tue, 8 Aug 2023 16:51:08 +0100 Subject: [PATCH] chore: update test matrix for Go 1.21 (#1255) 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 df4e3aefd..15ba2680d 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -12,14 +12,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