-
Notifications
You must be signed in to change notification settings - Fork 15
Update deps #352
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
Update deps #352
Conversation
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.
Pull request overview
Updates this repository’s Go toolchain patch version and refreshes Go module dependencies for both the main module and the tools/ module.
Changes:
- Bump Go toolchain from
go1.25.5togo1.25.7(including the composite setup action). - Update
tools/module dependency set (cloud/google, AWS SDK, OpenTelemetry, etc.) and refreshtools/go.sum. - Update main module
golang.org/x/expversion and refreshgo.sum.
Reviewed changes
Copilot reviewed 3 out of 5 changed files in this pull request and generated 2 comments.
Show a summary per file
| File | Description |
|---|---|
tools/go.sum |
Updates checksums to match the new tools/ dependency graph. |
tools/go.mod |
Bumps toolchain patch version and updates many indirect tool dependencies. |
setup-go/action.yml |
Aligns CI/setup action to install Go 1.25.7. |
go.sum |
Updates checksums for the main module dependency change(s). |
go.mod |
Bumps toolchain patch version and updates golang.org/x/exp. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
tools/go.mod
Outdated
| github.com/go-toolsmith/strparse v1.1.0 // indirect | ||
| github.com/go-toolsmith/typep v1.1.0 // indirect | ||
| github.com/go-viper/mapstructure/v2 v2.4.0 // indirect | ||
| github.com/go-viper/mapstructure/v2 v2.2.1 // indirect |
Copilot
AI
Feb 6, 2026
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.
This change downgrades github.com/go-viper/mapstructure/v2 from v2.4.0 to v2.2.1. Dependency downgrades are often accidental (e.g., caused by a new constraint elsewhere) and can reintroduce fixed bugs. Please confirm this is intentional; if not, adjust constraints (or add a direct require/replace) so the resolved version stays at the desired newer release.
No description provided.