chore: upgrade Go toolchain to 1.27.0 - #202
Merged
Merged
Conversation
Bumps the go.mod directive, every CI workflow's go-version, and the handful of doc/prose version mentions that had drifted from the Dockerfile, which was already pinned to golang:1.27.0-alpine. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
GitHub's default code-scanning setup bundles its own Go toolchain (1.26.6 as of CodeQL 2.26.3), which rejects our go.mod floor of 1.27.0 under GOTOOLCHAIN=local, failing the Go analysis job. This advanced-setup workflow installs Go 1.27.0 via actions/setup-go before CodeQL runs, covering the same four languages (actions, go, javascript-typescript, python) the default setup covered. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.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
godirective in go.mod from 1.26.7 to 1.27.0go-versionin every workflow under.github/workflows/(ci.yml, e2e.yml, generate-server.yml, performance.yml, security-audit.yml) to 1.27.0golang:1.27.0-alpine, so no change needed there — this closes the gap between the build image and everything elseTest plan
go mod tidy— clean, only the go.mod directive line changed, go.sum untouchedmake fmt— cleanmake test(unit) — all pass under Go 1.27.0scripts/check-migrations.sh— 65 versions OKscripts/check-dashboards.py— OKscripts/seed-test-db.sh, filed separately); they run on Ubuntu in CI and are unaffected🤖 Generated with Claude Code