Skip to content

Refresh lockfile so Dependabot can resolve the adm-zip security update - #720

Merged
mcmpp merged 2 commits into
prodfrom
copilot/fix-dependabot-failure
Aug 11, 2026
Merged

Refresh lockfile so Dependabot can resolve the adm-zip security update#720
mcmpp merged 2 commits into
prodfrom
copilot/fix-dependabot-failure

Conversation

Copilot AI commented Aug 11, 2026

Copy link
Copy Markdown
Contributor

Dependabot’s security update job for adm-zip was failing because the repository lockfile still resolved the vulnerable 0.5.9, even though package.json already declared an override to ^0.6.0. This updates the lockfile to match the existing dependency policy so the security update is resolvable.

  • Dependabot failure root cause

    • package.json already overrides adm-zip to ^0.6.0
    • package-lock.json was stale and still pinned the transitive resolution to 0.5.9
    • Dependabot interpreted that mismatch as security_update_not_possible
  • Lockfile refresh

    • Re-generated package-lock.json from current package metadata
    • Updated the resolved adm-zip entry from 0.5.9 to 0.6.0
    • Synced the lockfile’s grunt-contrib-compress dependency metadata with the override-driven resolution
  • Result

    • The lockfile now reflects the intended secure transitive version
    • Dependabot can evaluate the update path without treating the vulnerability fix as unresolvable
"overrides": {
  "adm-zip": "^0.6.0"
}

Co-authored-by: mcmpp <13901369+mcmpp@users.noreply.github.com>
Copilot AI changed the title [WIP] Fix failing GitHub Actions job Dependabot Refresh lockfile so Dependabot can resolve the adm-zip security update Aug 11, 2026
Copilot AI requested a review from mcmpp August 11, 2026 14:56
@mcmpp
mcmpp marked this pull request as ready for review August 11, 2026 14:56
@mcmpp
mcmpp merged commit 715f264 into prod Aug 11, 2026
5 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants