chore: update Go to 1.26.5 - #1355
Merged
Merged
Conversation
Go 1.26.5 fixes CVE-2026-39822 (os: root escape via symlink plus trailing slash on Unix) and CVE-2026-42505 (crypto/tls), both of which are flagged by image scans against binaries built with Go 1.26.4. Updates the Go version in mise.toml (which CI derives its Go version from), go.mod, lib/go.mod, dev/vendor-lib.sh, and the Dockerfile builder image. The golang:1.26.5 Alpine image is only published on Alpine 3.23, so the builder stage moves from alpine3.22 to alpine3.23; the runtime stage is unchanged. ## Test Plan - go build ./cmd/src - go test ./... passes with Go 1.26.5
valerybugakov
approved these changes
Jul 27, 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.
Go 1.26.5 fixes CVE-2026-39822 (
os: root escape via symlink plus trailing slash on Unix) and CVE-2026-42505 (crypto/tls), both of which image scans flag against binaries built with Go 1.26.4 — including thesrc-clibinary vendored into the executor images.This updates the Go version in
mise.toml(which CI derives its Go version from),go.mod,lib/go.mod,dev/vendor-lib.sh, and the Dockerfile builder image. Thegolang:1.26.5Alpine image is only published on Alpine 3.23, so the builder stage moves fromalpine3.22toalpine3.23; the runtime stage is unchanged.Test Plan
go build ./cmd/srcgo test ./...passes with Go 1.26.5