deps: upgrade all dependencies to latest#137
Merged
Merged
Conversation
Go modules: - prometheus/common v0.69.0 -> v0.70.0 (transitive) GitHub Actions / tooling: - golangci-lint (ci.yml) v2.9.0 -> v2.12.2 - github/codeql-action v4.36.3 -> v4.37.0 Verified: go build, go vet, go test (all 26 packages), golangci-lint v2.12.2 (0 issues), and govulncheck (0 affecting) all pass. Co-authored-by: Copilot App <[email protected]>
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #137 +/- ##
=======================================
Coverage 79.36% 79.36%
=======================================
Files 44 44
Lines 3960 3960
=======================================
Hits 3143 3143
Misses 610 610
Partials 207 207
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Harness. 🚀 New features to boost your workflow:
|
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
Routine dependency refresh: all direct Go modules were already at their latest releases, so this bumps the remaining outdated transitive module plus the pinned CI tooling and actions.
Changes
Go modules
github.com/prometheus/commonv0.69.0 -> v0.70.0 (transitive viaprometheus/client_golang)All direct dependencies were already at latest;
go get -u -t ./...+go mod tidyproduced only the change above.GitHub Actions / tooling
golangci-lint(ci.yml) v2.9.0 -> v2.12.2github/codeql-actionv4.36.3 -> v4.37.0actions/setup-gowas already pinned to the latest SHA (v6.5.0);actions/checkout,codecov/codecov-action,golangci/golangci-lint-action, andsoftprops/action-gh-releaseare all at their latest releases.Verification
go build ./...cleango vet ./...cleango test ./...all 26 packages passgolangci-lint run ./...(v2.12.2) 0 issuesgovulncheck ./...0 vulnerabilities affecting the codego.mod/go.sumtidyThe race suite (
go test -race) runs in CI on cgo-enabled runners; it cannot run locally (no C toolchain, CGO_ENABLED=0), but the non-race suite is green and the change is a patch-level transitive bump.Co-authored-by: Copilot App [email protected]