-
Notifications
You must be signed in to change notification settings - Fork 13
OADP-7565: Go 1.25.8 toolchain + golang.org/x/* CVE bumps #167
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
base: oadp-dev
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -2,6 +2,8 @@ module github.com/migtools/oadp-cli | |
|
|
||
| go 1.25.0 | ||
|
|
||
| toolchain go1.25.8 | ||
|
|
||
| require ( | ||
| github.com/fatih/color v1.18.0 | ||
| github.com/migtools/oadp-non-admin v0.0.0-20260323172345-31a3bfc20310 | ||
|
|
@@ -91,12 +93,12 @@ require ( | |
| github.com/x448/float16 v0.8.4 // indirect | ||
| go.starlark.net v0.0.0-20230525235612-a134d8f9ddca // indirect | ||
| go.yaml.in/yaml/v2 v2.4.3 // indirect | ||
| golang.org/x/mod v0.30.0 // indirect | ||
| golang.org/x/net v0.47.0 // indirect | ||
| golang.org/x/mod v0.33.0 // indirect | ||
| golang.org/x/net v0.52.0 // indirect | ||
| golang.org/x/oauth2 v0.33.0 // indirect | ||
| golang.org/x/sys v0.40.0 // indirect | ||
| golang.org/x/term v0.37.0 // indirect | ||
| golang.org/x/text v0.31.0 // indirect | ||
| golang.org/x/sys v0.42.0 // indirect | ||
| golang.org/x/term v0.41.0 // indirect | ||
| golang.org/x/text v0.35.0 // indirect | ||
|
Comment on lines
+96
to
+101
|
||
| golang.org/x/time v0.14.0 // indirect | ||
| gomodules.xyz/jsonpatch/v2 v2.4.0 // indirect | ||
| google.golang.org/genproto/googleapis/rpc v0.0.0-20251103181224-f26f9409b101 // indirect | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
go.modnow declarestoolchain go1.25.8, but several other CI workflows in the repo still useactions/setup-go@v5withgo-version-file: go.mod(e.g.,cross-arch-build-test.yml,release.yml,quay_binaries_push.yml). To avoid inconsistent CI behavior (or potential failures if older setup-go versions can’t handle thetoolchaindirective), consider aligning all workflows to the same setup-go major version (v6) or otherwise verifying v5 works correctly with the toolchain directive.