Commit da080e5
committed
ci: read the go version from go.mod in release.yml too
release.yml kept its own hardcoded go-version, so every tag push died at
`go mod download`:
go: go.mod requires go >= 1.26.0 (running go 1.25.7; GOTOOLCHAIN=local)
The modules themselves published fine — the proxy serves them and consumers
resolve them — but the GitHub release job never ran. warden was unaffected
purely because its release.yml carried no pin at all.
This is the same stale pin in a third workflow location after the shared CI
call and the repo's own CI jobs. Every workflow now reads the directive from
go.mod via go-version-file, so there is no copy left to drift.1 parent 4af7e74 commit da080e5
1 file changed
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
43 | 43 | | |
44 | 44 | | |
45 | 45 | | |
46 | | - | |
| 46 | + | |
47 | 47 | | |
48 | 48 | | |
49 | 49 | | |
| |||
0 commit comments