You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It looks like the go.mod file in version v0.21.0 specifies an invalid Go version : go 1.23.7
This causes go install to fail with the following error:
go: github.com/google/go-jsonnet/cmd/jsonnet@latest (in github.com/google/[email protected]): go.mod:3: invalid go version '1.23.7': must match format 1.23
The Go version directive should use the format major.minor (e.g. 1.23) without the patch component.
This is currently breaking CI pipelines that run:
go install github.com/google/go-jsonnet/cmd/jsonnet@latest
Could you please correct the go.mod file to use a valid Go version? Thanks a lot for your work!