Skip to content

Commit 06ac8f5

Browse files
committed
chore(actions): added a toolchain for go1.24.12
the release builds are getting failed because of go.sum generated with 1.24, but needing update for 1.25 - Also copied one of the checks in release to tests, to see fails during the push rather than on tagging.
1 parent ff35292 commit 06ac8f5

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

.github/workflows/pushes.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,11 @@ jobs:
8282
misspell -error -locale US .
8383
misspell -error -locale US ./nk
8484
staticcheck ./...
85+
out="$(go list -m -retracted -f '{{if .Retracted}}{{.Path}} is retracted{{end}}' all)"
86+
if [ -n "$out" ]; then
87+
printf '%s\n' "$out"
88+
exit 1
89+
fi
8590
8691
- name: Run Basic Tests
8792
id: tests

go.mod

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@ module github.com/nats-io/nkeys
22

33
go 1.24.0
44

5+
toolchain go1.24.12
6+
57
require golang.org/x/crypto v0.47.0
68

79
require golang.org/x/sys v0.40.0 // indirect

0 commit comments

Comments
 (0)