Upgrade to Go 1.25 and update all dependencies#31
Merged
Conversation
- Bump go.mod to Go 1.25 (resolved to 1.25.8, the floor required by google.golang.org/api and google.golang.org/genproto) - Update GitHub Actions: actions/checkout@v4, actions/setup-go@v5, go-version 1.25 - go get -u ./... to upgrade all direct and indirect dependencies - go mod tidy to clean up module requirements Validated with go build, go vet, and go test (all passing).
jharshman
approved these changes
Jun 24, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Upgrades the project to Go 1.25 and updates all dependencies to their latest versions.
Changes
1.24.0to1.25.x.go mod tidyresolved it to1.25.8, which is the floor required by upgraded transitive dependencies (google.golang.org/api,google.golang.org/genproto)..github/workflows/ci.yml):actions/checkout@v2->@v4actions/setup-go@v2->@v5go-version^1.20->1.25go get -u ./...to upgrade all direct and indirect dependencies to their latest versions, followed bygo mod tidy. Notable bumps include:cloud.google.com/go/monitoringv1.22.1 -> v1.29.0gonum.org/v1/plotv0.15.0 -> v0.17.0google.golang.org/apiv0.216.0 -> v0.286.0google.golang.org/grpcv1.69.4 -> v1.81.1google.golang.org/protobufv1.36.2 -> v1.36.11golang.org/x/*packages updated to latestValidation
All commands run clean against Go 1.25.11:
go mod tidy✅go build ./...✅go vet ./...✅go test ./...✅ (passing)Closes #29