From 0fff63390de4c1ca1810834b60366c1f128d5919 Mon Sep 17 00:00:00 2001 From: Marc-Antoine Ruel Date: Tue, 17 May 2022 12:41:08 -0400 Subject: [PATCH] github actions: fix actions/setup-go@v3 I was misusing semver, using ^ where I wanted ~ --- .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 dfc8bf7..68934c5 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -28,9 +28,9 @@ jobs: runs-on: "${{matrix.os}}" name: "go${{matrix.gover}}.x on ${{matrix.os}}" steps: - - uses: actions/setup-go@v2 + - uses: actions/setup-go@v3 with: - go-version: "^${{matrix.gover}}.0" + go-version: "~${{matrix.gover}}.0" # Checkout and print debugging information. - name: Turn off git core.autocrlf