From 57470b4be38ac76bffe90e84e5caadb8674af9cf Mon Sep 17 00:00:00 2001 From: Leon Klingele Date: Wed, 17 May 2023 23:42:46 +0200 Subject: [PATCH] github/workflows: put Go version in quotes See https://github.com/golangci/golangci-lint-action/pull/670. --- .github/workflows/test.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index c11960f478b..38a76802bc0 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -18,7 +18,8 @@ jobs: Build: strategy: matrix: - go-version: [1.17.x, 1.18.x, 1.19.x, 1.20.x, 1.21.x] + # NOTE: Always list the version from go.mod + go-version: ["1.17.x", "1.18.x", "1.19.x", "1.20.x", "1.21.x"] platform: [ubuntu-latest, windows-latest, macos-latest] runs-on: ${{ matrix.platform }} steps: