Skip to content

Commit 07cf3b7

Browse files
Setup Dependency enforcement
1 parent 14a74b4 commit 07cf3b7

1 file changed

Lines changed: 19 additions & 0 deletions

File tree

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# For most projects, this workflow file will not need changing; you simply need
2+
# to commit it to your repository.
3+
4+
name: "Dependency Review"
5+
on: [pull_request]
6+
permissions:
7+
contents: read
8+
jobs:
9+
dependency-review:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- name: "Checkout Repository"
13+
uses: actions/checkout@v4
14+
15+
- name: Dependency Review
16+
uses: actions/dependency-review-action@v4
17+
with:
18+
fail-on-severity: high
19+
fail-on-scopes: runtime, development

0 commit comments

Comments
 (0)