We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 14a74b4 commit 07cf3b7Copy full SHA for 07cf3b7
1 file changed
.github/workflows/dependency_enforcement.yml
@@ -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