sec: fix js-yaml GHSA-h67p-54hq-rp68 (CVE-2026-53550) across all action packages#154
Open
kevinpinscoe wants to merge 1 commit into
Open
sec: fix js-yaml GHSA-h67p-54hq-rp68 (CVE-2026-53550) across all action packages#154kevinpinscoe wants to merge 1 commit into
kevinpinscoe wants to merge 1 commit into
Conversation
…on packages (SRE-4394) js-yaml < 3.15.0 is a transitive devDependency (via @istanbuljs/load-nyc-config, jest's coverage tooling) in all three npm subdirectories. Dependabot never opened a PR for it since it can't bump a transitive dep directly. Same fix pattern as the SRE-4373 undici fix (#110): pin via `overrides` rather than waiting on the parent package. Verified via npm audit (0 vulnerabilities, was 1 moderate each) and confirmed js-yaml never appears in the built lib/index.js bundles (dev/test only, never shipped in the action runtime).
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 3 unlinked Dependabot security alerts (#168, #169, #170 — all the same
GHSA-h67p-54hq-rp68 /
CVE-2026-53550, js-yaml < 3.15.0, CVSS 5.3 medium) across
github-release-download,set-environment-variables, andsetup-terraform.js-yaml is a transitive devDependency pulled in by
@istanbuljs/load-nyc-config(jest's coverage tooling) — never a direct dependency, so Dependabot never opened
a PR for it. Same shape and same fix as the SRE-4373 undici fix (#110): add an
overridesentry to force the patched version rather than waiting on the parentpackage to bump its own dependency.
Verification
npm audit: 0 vulnerabilities in all three subdirectories (was 1 moderate each)package-lock.jsonconfirms js-yaml resolves to 3.15.0 in all three (was 3.14.2)lib/index.js— dev/test-only, never shippedin the action runtime, so this carries effectively zero behavioral risk
npm testhits a pre-existingCannot find module 'jest-util'error that alsoreproduces on a clean checkout of
mainwith no changes — a local sandbox/npmversion issue unrelated to this fix; CI's test job should be unaffected
Test plan
Testing Download/Testing Environment/Testing Terraform) passes green