Skip to content

Commit

Permalink
YAML Enginering: quote go-version string
Browse files Browse the repository at this point in the history
Try to ensure that when we switch to Go 1.20 we don't forget to quote the
string to protect against the version being parsed as `1.2`.
  • Loading branch information
philpennock committed May 7, 2023
1 parent c891293 commit 64eab80
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.19
go-version: '1.19'
check-latest: true

- name: Basic integrity checks
Expand Down

0 comments on commit 64eab80

Please sign in to comment.