From 357106fb6773afb9ca187548ee34f2f07389e1af Mon Sep 17 00:00:00 2001 From: Mateusz Drewniak Date: Sat, 1 Jul 2023 22:13:45 +0200 Subject: [PATCH] Fix go versions in CI --- .github/workflows/test.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index b30e6d3f..e637c76b 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -12,9 +12,9 @@ jobs: strategy: matrix: os: [ubuntu-latest, windows-latest, macos-latest] - go: [1.18, 1.19, 1.20] + go: ['1.18', '1.19', '1.20'] steps: - - name: Set up Go 1.16 + - name: Set up Go uses: actions/setup-go@v2 with: go-version: ${{ matrix.go }} @@ -33,7 +33,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v2 with: - go-version: 1.20 + go-version: '1.20' id: go - name: Check out code into the Go module directory uses: actions/checkout@master