Skip to content

Commit

Permalink
fix go version variable
Browse files Browse the repository at this point in the history
  • Loading branch information
crhntr committed Feb 13, 2024
1 parent 4a250fa commit 5be0ef7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ jobs:
echo "version=$(cat go.mod | grep '^go \d*\.\d*$' | awk '{print $2}')" > "${GITHUB_OUTPUT}"

- name: Set up Go
uses: actions/setup-go@v3
uses: actions/setup-go@v5
with:
go-version: ${{ steps.parse-go-version.outputs.version }}
go-version: '${{ steps.parse-go-version.outputs.version }}'

- name: Test
run: go test -v ./...

0 comments on commit 5be0ef7

Please sign in to comment.