github actions: fix actions/setup-go@v3

I was misusing semver, using ^ where I wanted ~
pull/49/head
Marc-Antoine Ruel 4 years ago
parent 0012149b5d
commit 0fff63390d

@ -28,9 +28,9 @@ jobs:
runs-on: "${{matrix.os}}" runs-on: "${{matrix.os}}"
name: "go${{matrix.gover}}.x on ${{matrix.os}}" name: "go${{matrix.gover}}.x on ${{matrix.os}}"
steps: steps:
- uses: actions/setup-go@v2 - uses: actions/setup-go@v3
with: with:
go-version: "^${{matrix.gover}}.0" go-version: "~${{matrix.gover}}.0"
# Checkout and print debugging information. # Checkout and print debugging information.
- name: Turn off git core.autocrlf - name: Turn off git core.autocrlf

Loading…
Cancel
Save