fix: resolve new dependency advisories failing yarn audit - #648
Open
douglance wants to merge 2 commits into
Open
fix: resolve new dependency advisories failing yarn audit#648douglance wants to merge 2 commits into
douglance wants to merge 2 commits into
Conversation
A wave of advisories published around 2026-07-20 pushed the audit job red on every PR. All have in-range patched versions, so bump the existing resolutions rather than allowlisting: - axios ^1.18.0 (direct devDep) and sol2uml/axios 0.33.0 - immutable 4.3.9, fast-uri 3.1.4 - adm-zip 0.6.0 (new resolution; hardhat pulls a vulnerable <0.6.0) - js-yaml 3.15.0 (eslint) / 4.3.0 (mocha) - brace-expansion 1.1.16 / 2.1.2 The bumped pins also cover two previously-unfixable allowlisted advisories (GHSA-f886-m6hf-6m8v, GHSA-h67p-54hq-rp68), so drop them from audit-ci.jsonc.
OffchainLabs/arbitrum-testnode was renamed to OffchainLabs/arbitrum-litro. GitHub Actions does not follow repo renames when resolving 'uses:' references, so jobs using this action fail at setup with "Unable to resolve action. Repository not found". The pinned tag exists on the renamed repo; only the action reference needs updating.
Contributor
Author
|
Cherry-picked #647's one-line testnode→litro rename fix so the integration matrix can actually run here (main's workflow still points at the renamed repo, which fails at job setup). Content-identical to #647, merges cleanly in either order. Expected result: this PR fully green; #647 red only on Audit until this merges. |
dewanshparashar
approved these changes
Jul 23, 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.
Summary
The Audit job has been red on every PR (including dependabot's) since a wave of advisories published ~2026-07-20. All of them have patched versions inside the currently-used ranges, so this bumps the existing
resolutionspins instead of allowlisting:axios(direct devDep)^1.17.0→^1.18.0**/sol2uml/axios**/immutable**/fast-uri**/hardhat/adm-zip**/eslint/js-yaml,**/eslint/@eslint/eslintrc/js-yaml**/mocha/js-yaml**/brace-expansion**/mocha/minimatch/brace-expansion,**/convert-svg-core/glob/minimatch/brace-expansionThe bumped pins also cover two allowlisted advisories that previously had no compatible patch (GHSA-f886-m6hf-6m8v brace-expansion, GHSA-h67p-54hq-rp68 js-yaml) — audit-ci itself now suggests un-allowlisting them, so their entries are removed from
audit-ci.jsonc.Verification
yarn audit:cilocally: Passed yarn security audit (was 11 failing findings)Unblocks the Audit check on #647 and every other open PR.