Skip to content

Commit

Permalink
Use correct field to specify Go version in GitHub action
Browse files Browse the repository at this point in the history
There is a typo in the actions/setup-go step which leads to the Go
version not being picked up correctly. Fix it.
  • Loading branch information
tklauser committed Sep 29, 2021
1 parent 504425e commit afd6c82
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Expand Up @@ -21,7 +21,7 @@ jobs:
steps:
- uses: actions/setup-go@v2
with:
go-versions: ${{ matrix.go }}
go-version: ${{ matrix.go }}
- uses: actions/checkout@v2
- name: test
shell: bash
Expand Down

0 comments on commit afd6c82

Please sign in to comment.