Upgrade Go to 1.26#128
Merged
Merged
Conversation
Bumps the module's Go version from 1.25.0 to 1.26.3 (latest patch as of May 2026). Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
There was a problem hiding this comment.
Pull request overview
Upgrades the module’s Go version in go.mod to target Go 1.26.3 so CI and local builds use the newer Go toolchain line.
Changes:
- Bump the
godirective ingo.modfrom1.25.0to1.26.3.
Show a summary per file
| File | Description |
|---|---|
| go.mod | Updates the Go version directive to Go 1.26.3. |
Copilot's findings
- Files reviewed: 1/1 changed files
- Comments generated: 1
Super-linter v8.6.0 ships with Go 1.26.1 and sets GOTOOLCHAIN=local internally, which blocks golangci-lint from satisfying go.mod's go 1.26.3 requirement. Override with GOTOOLCHAIN=auto so the bundled toolchain can fetch 1.26.3 on demand. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
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 module's Go version from
1.25.0to1.26.3(the latest patch as of May 2026).Changes
go.mod: bumpgodirective from1.25.0→1.26.3Why
CI impact
None required. All workflows already track
go.mod:build.ymlandlinter.ymluseactions/setup-gowithgo-version-file: go.modrelease.ymlusescli/gh-extension-precompilewithgo_version_file: go.modVerification
go mod tidy— clean, no dependency changesgo build ./...— passesgo test ./...— all packages pass