Upgrade to Go 1.26.7 - #166
Merged
Merged
Conversation
Bump the go directive from 1.25.0 to 1.26.7, the latest 1.26 patch release. Ran `go fix ./...` to completion; it reported no changes, so no source edits were needed. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
dopey
approved these changes
Aug 26, 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.
Bumps the
godirective ingo.modfrom1.25.0to1.26.7, the latest 1.26 patch release available on the module proxy.Changes
go.mod:go 1.25.0→go 1.26.7That's the entire diff. No
toolchaindirective was needed, andgo.sumis unchanged.go fixRan
go fix ./...repeatedly until convergence — it reported zero changes on the first pass. Verified this wasn't a silent no-op:go tool fix helpconfirms all 23 fixers (any,rangeint,minmax,newexpr,stringsseq,waitgroup, …) are registered and enabled by default.go fix -diff ./...also produced empty output.The repo has only five hand-written Go files (
policy.go,context.go,tools.go,policy_test.go,context_test.go); everything else is generated*.pb.go, whichgo fixdeliberately skips.Verification
go build ./...,go vet ./..., andgo test ./...all pass under go1.26.7.Note on CI
.github/workflows/ci.ymldelegates tosmallstep/workflows/.github/workflows/goCI.yml@mainwithonly-latest-golang: false, so the Go version is derived fromgo.modrather than pinned in this repo — nothing to update there.🤖 Generated with Claude Code