From dae910e5d912270bb1c4b9462a26dc6faa883a3c Mon Sep 17 00:00:00 2001 From: Josh France <12610835+16francej@users.noreply.github.com> Date: Mon, 13 Jul 2026 14:57:53 -0700 Subject: [PATCH] ci: add dependency-review-action to scan PR dependency changes Fails PRs that introduce dependencies with known high/critical vulnerabilities; posts a summary comment on failure. Co-Authored-By: Claude Fable 5 --- .github/workflows/dependency-review.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/dependency-review.yml diff --git a/.github/workflows/dependency-review.yml b/.github/workflows/dependency-review.yml new file mode 100644 index 000000000..52ef37b59 --- /dev/null +++ b/.github/workflows/dependency-review.yml @@ -0,0 +1,19 @@ +name: Dependency Review + +on: pull_request + +permissions: + contents: read + +jobs: + dependency-review: + runs-on: ubicloud-standard-8 + permissions: + contents: read + pull-requests: write + steps: + - uses: actions/checkout@v4 + - uses: actions/dependency-review-action@v4 + with: + fail-on-severity: high + comment-summary-in-pr: on-failure