chore: pin curl to ^8.20.0-r0 to address CVE-2026-6429#1448
Draft
linear-code[bot] wants to merge 2 commits into
Draft
chore: pin curl to ^8.20.0-r0 to address CVE-2026-6429#1448linear-code[bot] wants to merge 2 commits into
linear-code[bot] wants to merge 2 commits into
Conversation
Co-authored-by: linear-code[bot] <222613912+linear-code[bot]@users.noreply.github.com>
Co-authored-by: linear-code[bot] <222613912+linear-code[bot]@users.noreply.github.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.
Fixes SOU-1507
Trivy flagged
curl/libcurl8.19.0-r0in the runner image for CVE-2026-6429 (credential leak via a reused proxy connection during HTTP redirects), fixed in8.20.0-r0.The runner stage already runs
apk upgrade --no-cache, and8.20.0-r0is now published for Alpine 3.23. However, the GitHub Actions build cache (cache-from/cache-toin_build.yml) serves the staleapklayer, so the upgrade never re-runs. Pinningcurl>=8.20.0-r0in theapk addline invalidates that layer's cache and guarantees the patched version is installed (libcurlis versioned in lockstep withcurl, so it's pulled at8.20.0-r0as well).