Upgrade to Go 1.26.6 - #246
Merged
Merged
Conversation
There was a problem hiding this comment.
Pull request overview
Raises the repository’s minimum Go version to 1.26.5 and updates developer-facing documentation plus GitHub Actions workflows to use that version, aligning local builds, CI, and the module’s declared Go toolchain baseline.
Changes:
- Bump
go.modgodirective to1.26.5. - Update README build requirements to Go
1.26.5+. - Update CI and swagger-generation workflows to run with Go
1.26.5.
Reviewed changes
Copilot reviewed 4 out of 4 changed files in this pull request and generated 2 comments.
| File | Description |
|---|---|
| README.md | Updates “Building from Source” requirements to Go 1.26.5+. |
| go.mod | Raises the module’s minimum Go version to 1.26.5. |
| .github/workflows/swagger.yml | Pins workflow Go version to 1.26.5 for swagger generation. |
| .github/workflows/ci.yml | Updates CI matrix and lint job to run on Go 1.26.5. |
Suppressed comments (1)
.github/workflows/ci.yml:45
- This workflow hardcodes the Go version. Since the repo already uses
go-version-file: go.modin the release workflow, switching togo-version-filehere reduces duplication and prevents CI from drifting from go.mod over time.
- name: Set up Go
uses: actions/setup-go@b7ad1dad31e06c5925ef5d2fc7ad053ef454303e # v7.0.0
with:
go-version: '1.26.5'
💡 Add a code-review agent skill or configure MCP servers for context-aware, tailored reviews. Learn more in the docs.
Contributor
|
How about setting |
Contributor
Author
|
@kokes done |
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.
Select Go 1.26.6 through the
toolchaindirective ingo.modwhile keeping the module compatibility floor at Go 1.25.6. CI, release, and Swagger workflows read the selected version fromgo.mod, and Docker uses the matching Go image.