Update README.md

I recently came across a bug where specifying `go-version: '1.20'` used Go 1.2, not 1.20. It was not clear from the readme that to avoid this, the Go version should be written inside single quotes (as per this comment: https://github.com/actions/setup-go/issues/326#issuecomment-1415719692) but the single quotes are missing from the example in this repository.  This PR fixes this.
This commit is contained in:
Paul Vaughan 2023-02-08 09:40:12 +00:00 committed by GitHub
parent 6a290f7d5d
commit 1dee6037e0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -40,7 +40,7 @@ jobs:
steps:
- uses: actions/setup-go@v3
with:
go-version: 1.17
go-version: '1.17'
- uses: actions/checkout@v3
- name: golangci-lint
uses: golangci/golangci-lint-action@v3