Commit 6697442
authored
fix: use go-version-file in release workflow (#317)
The release workflow hardcoded `go-version: "1.25.6"`, but `go.mod` was
bumped to `1.25.7` in #316, causing the v0.0.14 release to fail with:
```
go: go.mod requires go >= 1.25.7 (running go 1.25.6; GOTOOLCHAIN=local)
```
Switch to `go-version-file: "go.mod"` (matching `test.yml`) so the Go
version is always read from `go.mod` and can't drift.1 parent c6901e8 commit 6697442
1 file changed
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
19 | 19 | | |
20 | 20 | | |
21 | 21 | | |
22 | | - | |
| 22 | + | |
23 | 23 | | |
24 | 24 | | |
25 | 25 | | |
| |||
0 commit comments