-
Notifications
You must be signed in to change notification settings - Fork 13
OADP-7565: Go 1.25.8 toolchain + golang.org/x/* CVE bumps #166
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
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
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🧩 Analysis chain🏁 Script executed: #!/bin/bash
set -euo pipefail
echo "== go.mod x/* entries =="
rg -n '^\s*golang\.org/x/(crypto|mod|net|sys|term|text)\s+v' go.mod || true
echo
echo "== go.sum x/crypto entries =="
rg -n '^golang\.org/x/crypto\s+v' go.sum | sort -u || true
echo
echo "Expected result:"
echo "- Either no golang.org/x/crypto entry (not in resolved graph),"
echo "- or only versions >= v0.49.0."Repository: migtools/oadp-cli Length of output: 1691
While lines 96–101 bump other 🤖 Prompt for AI Agents |
||
| 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.
Only
test.yml/lint.ymlwere updated toactions/setup-go@v6, but other workflows (e.g.cross-arch-build-test.yml,release.yml,quay_binaries_push.yml) still useactions/setup-go@v5. If@v6is required for correcttoolchaindirective handling, those workflows may not use the expected toolchain (or will rely on Go’s auto-download behavior). Consider bumping the remaining workflows to@v6for consistency and to avoid CI drift.