Skip to content

Commit

Permalink
ci(nightly): fix go version so workflow works
Browse files Browse the repository at this point in the history
The `1.20` integer value was being interpreted as Go 1.2.x, not 1.20.x.
  • Loading branch information
jimehk committed May 1, 2024
1 parent f229848 commit e88fa31
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-go@v5
with:
go-version: 1.20
go-version: "1.20"
- name: Check if bundled schemas are up to date
run: make check-schemas

0 comments on commit e88fa31

Please sign in to comment.