Updates to Dependabot#716
Open
sophie-poole-nhs wants to merge 2 commits intomainfrom
Open
Conversation
There was a problem hiding this comment.
Pull request overview
Updates Dependabot cadence/grouping and replaces the previous npm-audit-based vulnerability check with a PR-time “dependency cooldown” gate for npm dependency changes.
Changes:
- Configure Dependabot to run weekly on Wednesdays and group non-major npm updates (plus tweaks to ignore rules).
- Add a new PR workflow that runs when
package.json/package-lock.jsonchange and enforces a dependency “cooldown” period. - Remove the scheduled workflow step that ran
npm audit.
Reviewed changes
Copilot reviewed 4 out of 4 changed files in this pull request and generated 8 comments.
| File | Description |
|---|---|
scripts/reports/check-dependency-cooldown.sh |
New script to detect changed dependencies (or all deps) and verify publish-age against a cooldown threshold. |
.github/workflows/cicd-9-scheduled-assurance.yaml |
Removes the npm audit step previously run against the release branch. |
.github/workflows/cicd-13-dependency-cooldown-check.yaml |
New PR workflow to install deps and run the cooldown check when npm manifests change. |
.github/dependabot.yaml |
Moves updates to weekly Wednesday schedule; groups npm minor/patch updates; adjusts ignore rules and grouping strategy. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
- Changes dependabot to run every wednesday and to group minor and patch updates. - Adds a cI pipeline which runs when a PR is opened that changes the package-lock.json or package.json files - Removes npm audit in favour or dependabot's security alerts
744c40a to
8b4f304
Compare
97c5fc4 to
8b4f304
Compare
terence-sheppard-nhs
approved these changes
Apr 29, 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.
Description
Dependabot doesn't have a biweekly option but if the PR is left open it will get updated on the following wednesday.
Type of changes