fix(deps): upgrade go to 1.26.8 and vulnerable modules - #4510
Open
stevenvegt wants to merge 3 commits into
Open
Conversation
A Trivy scan of the published 6.2.11 image flags the Go 1.26.5 standard library (7 advisories fixed in 1.26.6) and several modules. govulncheck confirms only the stdlib advisories as reachable; the module bumps clear the remaining image scanner findings. Assisted-by: AI
stevenvegt
requested review from
gerardsn,
reinkrul and
woutslakhorst
as code owners
September 9, 2026 12:02
The e2e workflow builds the image from this branch, and the go.mod directive now requires 1.26.8. Same change as #4507; identical hunks merge cleanly in either order. Assisted-by: AI
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
Fixes the following vulnerabilities:
net/urlhtml/templatecrypto/tlsnet/httpencoding/xmlencoding/asn1golang.org/x/cryptogolang.org/x/netgoogle.golang.org/grpcgithub.com/labstack/echo/v4github.com/go-chi/chi/v5The test job on V6.2 stays red until #4494 merges: it carries the fix for the stale
nuts-node/cmdimport in the docs test that has broken go-test on the branch since #4487.Verification:
go build ./...ok;govulncheck ./...reports 0 reachable vulnerabilities (was 7 stdlib). The module CVEs were never reachable according to govulncheck; they are fixed to clear image scanner reports.go test ./...passes except TestNetwork_checkHealth, which fails on this machine regardless of branch (local network environment).Not for release yet; part of the batch of fixes before the next 6.2 patch tag, together with #4507.
Assisted-by: AI