-
Notifications
You must be signed in to change notification settings - Fork 15
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Downgrade Go version inside go.mod
#33
Comments
Sure thing - apologies for the inconvenience! |
@alexkohler Can you create a new tag? You cannot re-use an existing tag (
|
Done. Just pushed a |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Is it possible for you to downgrade the version inside your
go.mod
to go1.21?The new way to handle the module and Go version is strict.
The Go version inside the
go.mod
defines the minimum supported version of Go, and forces the users to follow this minimum version.You can compile with a higher version than the
go.mod
but you cannot compile with a version lower than thego.mod
.https://go.dev/blog/toolchain
golangci/golangci-lint#4529
Note:
golang.org/x/[email protected]
contains a bug golang/go#66259The text was updated successfully, but these errors were encountered: