From e5745d6095ecc2497281569e8713835f2c4a029f Mon Sep 17 00:00:00 2001 From: arukiidou Date: Wed, 7 Feb 2024 23:39:27 +0900 Subject: [PATCH] ci: Test with Go 1.22 (#1409) With the release of Go 1.22, CI should run against Go 1.21 and 1.22 --- .github/workflows/go.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index b5576a542..ea798b947 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -16,9 +16,9 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - go: ["1.20.x", "1.21.x"] + go: ["1.21.x", "1.22.x"] include: - - go: 1.21.x + - go: 1.22.x steps: - name: Checkout code @@ -53,7 +53,7 @@ jobs: - uses: actions/setup-go@v4 name: Set up Go with: - go-version: 1.21.x + go-version: 1.22.x cache: false # managed by golangci-lint - uses: golangci/golangci-lint-action@v3