deps: upgrade all dependencies to latest - #143
Merged
Merged
Conversation
Go modules are already at their latest versions (from #137); the only available updates are phantom transitive deps that go mod tidy reverts, so go.mod and go.sum are unchanged. Upgrade SHA-pinned GitHub Actions to latest: - actions/setup-go v6 -> v7.0.0 (ci, govulncheck, codeql, release) - softprops/action-gh-release v3.0.1 -> v3.0.2 (release) - github/codeql-action init/autobuild/analyze -> 99df26d (v4.37.0) Align release.yml GO_VERSION 1.26.4 -> 1.26.5 to match go.mod. Verified locally: go build, go vet, go test (all 26 packages), golangci-lint v2.12.2 (0 issues), and govulncheck (0 called vulns) pass. Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> Copilot-Session: d8e26ebe-256e-4130-a3ef-1e8a53924d66
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #143 +/- ##
=======================================
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 was referenced Jul 19, 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 all dependencies across the repo's ecosystems (Go modules + SHA-pinned GitHub Actions) to their latest versions.
Go modules
No changes. The direct dependencies are already at their latest versions (from #137). The only updates
go list -m -u allreports are phantom transitive deps (go-md2man, montanaflynn/stats, objx, golang/protobuf, x/mod, x/tools) that are not in the build graph, andgo mod tidyreverts any bump, sogo.modandgo.sumare unchanged.GitHub Actions
This folds in the open Dependabot PRs #138, #139, #140, #141, and #142.
Housekeeping
release.ymlGO_VERSIONfrom1.26.4to1.26.5to match thegodirective ingo.mod.Verification
Ran locally, all green:
go build ./...go vet ./...go test ./...(all 26 packages pass)golangci-lint runv2.12.2 (0 issues)govulncheck ./...(0 called vulnerabilities)