Skip to content

Commit dd289d2

Browse files
committed
1 parent 30b6801 commit dd289d2

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# Dependency Review Action
2+
#
3+
# This Action will scan dependency manifest files that change as part of a Pull Reqest,
4+
# surfacing known-vulnerable versions of the packages declared or updated in the PR.
5+
# Once installed, if the workflow run is marked as required, PRs introducing known-vulnerable packages will be blocked from merging.
6+
#
7+
# Source repository: https://github.com/actions/dependency-review-action
8+
# Public documentation: https://docs.github.com/en/code-security/supply-chain-security/understanding-your-software-supply-chain/about-dependency-review#dependency-review-enforcement
9+
name: Dependency Review 🕵️
10+
on:
11+
- pull_request
12+
13+
permissions:
14+
contents: read
15+
16+
jobs:
17+
dependency-review:
18+
name: Check 🔎
19+
runs-on: ubuntu-latest
20+
steps:
21+
- name: 'Checkout Repository'
22+
uses: actions/checkout@v3
23+
- name: 'Dependency Review'
24+
uses: actions/dependency-review-action@v1

0 commit comments

Comments
 (0)