-
Notifications
You must be signed in to change notification settings - Fork 4.9k
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
Put full version of Go in go.mod while updating #41563
Conversation
The previous configuration was always replacing the full version of Go with a minor version: 1.22.8 -> 1.22. Newer versions of Go now put the full version value in `go.mod`. This leads to our CI failing because `go mod tidy` causes a change in `go.mod`. This is to fix those failures.
Pinging @elastic/elastic-agent-data-plane (Team:Elastic-Agent-Data-Plane) |
Pinging @elastic/elastic-agent (Team:Elastic-Agent) |
This pull request does not have a backport label.
To fixup this pull request, you need to add the backport labels for the needed
|
|
The previous configuration was always replacing the full version of Go with a minor version: 1.22.8 -> 1.22. Newer versions of Go now put the full version value in `go.mod`. This leads to our CI failing because `go mod tidy` causes a change in `go.mod`. This is to fix those failures. (cherry picked from commit bfaa70f)
The previous configuration was always replacing the full version of Go with a minor version: 1.22.8 -> 1.22.
Newer versions of Go now put the full version value in
go.mod
. This leads to our CI failing becausego mod tidy
causes a change ingo.mod
.This is to fix those failures.