Align lint workflow Go toolchain with go.mod requirement - #236
Draft
mdelapenya with Copilot wants to merge 2 commits into
Draft
Align lint workflow Go toolchain with go.mod requirement#236mdelapenya with Copilot wants to merge 2 commits into
mdelapenya with Copilot wants to merge 2 commits into
Conversation
Co-authored-by: mdelapenya <951580+mdelapenya@users.noreply.github.com>
Copilot
AI
changed the title
Fix lint workflow Go version selection
Align lint workflow Go toolchain with go.mod requirement
Aug 11, 2026
Copilot created this pull request from a session on behalf of
mdelapenya
August 11, 2026 16:21
View session
Member
|
@copilot there are conflicts, resolve them |
Co-authored-by: mdelapenya <951580+mdelapenya@users.noreply.github.com>
Contributor
Author
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.
The
lintGitHub Actions job failed because it resolved to a preinstalled Go toolchain older than the version required bygo.mod. This change makes the lint workflow derive its Go version from the module declaration so lint runs against the same toolchain the project requires.Root cause addressed
actions/setup-goin the lint workflow did not specify a version source, so CI selectedgo1.24.xwhile the module requiresgo1.25.0.Workflow change
.github/workflows/golangci-lint.ymlto pin toolchain resolution togo.modviago-version-file.Resulting behavior