fix: align Go version to 1.24.0 across all CI workflows and fix Makefile#655
Open
Rayhan1967 wants to merge 1 commit intocastai:masterfrom
Open
fix: align Go version to 1.24.0 across all CI workflows and fix Makefile#655Rayhan1967 wants to merge 1 commit intocastai:masterfrom
Rayhan1967 wants to merge 1 commit intocastai:masterfrom
Conversation
Member
|
Why not upgrade all to 1.25 or 1.26? |
Author
As you can see in the file changes, this PR only touches the CI workflows and Makefile. Upgrading to Go 1.26 would require to update go.mod and test all dependencies, which is better suited for a separate, dedicated PR. |
oskarwojciski
approved these changes
Mar 5, 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.
Description
This PR fixes inconsistencies in the CI/CD configuration and resolves the Makefile lint target execution issue.
Problem
go.modspecifies Go 1.24.0, causing potential compatibility issues during builds and tests.make lintcommand fails with "golangci-lint: No such file or directory" because the installed binary is not in the PATH.Solution
1.24.0in all CI workflow files to align withgo.mod$(HOME)/go/bin/golangci-lintFiles Changed
.github/workflows/golangci-lint.yml.github/workflows/doc.yamlMakefileVerification