From f852d8480f6d5bc7e6ff60c4ad57e26ecc2b9b32 Mon Sep 17 00:00:00 2001 From: Jonathan Hall Date: Wed, 22 Nov 2023 16:10:37 +0100 Subject: [PATCH] Update CI to include Go 1.21 --- .github/workflows/ci.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 08c0dc7..2d3e943 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -8,7 +8,7 @@ jobs: - uses: actions/checkout@v3 - uses: actions/setup-go@v3 with: - go-version: '1.20' + go-version: '1.21' - name: Run linters uses: golangci/golangci-lint-action@v3 with: @@ -18,7 +18,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - go: ["1.18.x", "1.19.x", "1.20.x"] + go: ["1.18.x", "1.19.x", "1.20.x", "1.21.x"] services: mysql8: image: mysql:8