chore(deps): fix all open dependabot security alerts#39
Merged
jonathannorris merged 3 commits intomainfrom Mar 17, 2026
Merged
Conversation
Upgrade @actions/cache (^3.2.2 -> ^5.0.5) and @actions/core (^1.10.1 -> ^2.0.3) to pull in @actions/http-client@3.0.2 with undici@^6.23.0, resolving 4 undici CVEs. Add yarn resolutions for tar (>=7.5.11) and minimatch (>=3.1.4) to fix 8 additional transitive dependency vulnerabilities. Also bumps @vercel/ncc to ^0.38.4.
There was a problem hiding this comment.
Pull request overview
This PR updates the GitHub Action’s Node dependencies (and the bundled dist/ artifacts produced via ncc) to address Dependabot security alerts, primarily by pulling patched versions of undici, tar, and minimatch.
Changes:
- Upgraded
@actions/cache,@actions/core, and@vercel/ncc(and updatedyarn.lockaccordingly). - Added Yarn
resolutionsfortarandminimatchto address transitive vulnerability alerts. - Updated generated
dist/license output and sourcemap register bundle, plus ignored Yarn PnP artifacts in.gitignore.
Reviewed changes
Copilot reviewed 1 out of 8 changed files in this pull request and generated 1 comment.
Show a summary per file
| File | Description |
|---|---|
package.json |
Upgrades primary deps and adds resolutions for vulnerable transitive packages. |
yarn.lock |
Locks the upgraded dependency tree, including updated undici and Azure/toolkit packages. |
dist/sourcemap-register.js |
Regenerated build artifact from ncc output. |
dist/licenses.txt |
Regenerated third-party license bundle reflecting updated transitive deps/licenses. |
.gitignore |
Ignores Yarn PnP artifacts (.pnp.*, .yarn/cache/). |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
You can also share your feedback on Copilot code review. Take the survey.
Scope minimatch resolutions to ^3.1.5 for v3 consumers and ^9.0.7 for v9 consumers instead of a global >=3.1.4, avoiding a major version jump and license change.
suthar26
approved these changes
Mar 17, 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
@actions/cache(^3.2.2→^5.0.5) and@actions/core(^1.10.1→^2.0.3) to resolve 4 undici CVEs via@actions/http-client@3.0.2tar(>=7.5.11) andminimatch(>=3.1.4) to fix 8 transitive dependency vulnerabilities@vercel/nccto^0.38.4.gitignoreDetails
Resolves all 12 open dependabot alerts:
undici6.24.1via@actions/http-client@3.0.2tar>=7.5.11minimatch>=3.1.4(resolves to10.2.4)Note:
@actions/cache@6.0.0and@actions/core@3.0.0are ESM-only, which is incompatible with the CJSindex.jsandnccbuild. Used the latest CJS-compatible majors (v5/v2) instead — these still pull in patchedundicivia@actions/http-client@3.0.2.