Skip to content

Commit 7cb5bcd

Browse files
authored
ci(nightly): fix go version so workflow works (#158)
The `1.20` integer value was being interpreted as Go 1.2.x, not 1.20.x.
1 parent f229848 commit 7cb5bcd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/nightly.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@ jobs:
1313
- uses: actions/checkout@v3
1414
- uses: actions/setup-go@v5
1515
with:
16-
go-version: 1.20
16+
go-version: "1.20"
1717
- name: Check if bundled schemas are up to date
1818
run: make check-schemas

0 commit comments

Comments
 (0)