feat(ci+docs): finish Go 1.26 upgrade -- align CI workflow and README#667
Open
75asu wants to merge 1 commit into
Open
feat(ci+docs): finish Go 1.26 upgrade -- align CI workflow and README#66775asu wants to merge 1 commit into
75asu wants to merge 1 commit into
Conversation
Signed-off-by: Asutosh Panda <asutosh.pda@gmail.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.
Resolves #641
The bulk of the Go 1.26 upgrade landed in #656 (the 4.5.3-4.8.2 release commit), which bumped
go.modto1.26.0/toolchain go1.26.2along with theMakefileand Dockerfiles. The CI workflow and README minimum-version statement were missed in that PR..github/workflows/go.yml:go-version: 1.24->'1.26'so CI's installed Go matches what the toolchain directive actually pulls.README.md:Golang >= 1.24->Golang >= 1.26so the prerequisites matchgo.mod.This finishes the closing two stragglers from #641 so the stated Go version is consistent across
go.mod,Makefile, Dockerfiles, CI, and README.