File tree 3 files changed +38
-1
lines changed
3 files changed +38
-1
lines changed Original file line number Diff line number Diff line change
1
+ ---
2
+ fail-on-severity : low
3
+ license-check : true
4
+ vulnerability-check : yes
5
+ comment-summary-in-pr : on-failure
6
+ allow-licenses :
7
+ - Apache-2.0
8
+ - BSD-2-Clause
9
+ - BSD-3-Clause
10
+ - ISC
11
+ - MPL-2.0
12
+ - MIT
Original file line number Diff line number Diff line change 3
3
# by a third-party and are governed by separate terms of service, privacy
4
4
# policy, and support documentation.
5
5
6
- name : osv-scanner
6
+ name : OSV Scanner
7
7
on :
8
8
push :
9
9
branches :
Original file line number Diff line number Diff line change
1
+ ---
2
+ # This workflow uses actions that are not certified by GitHub. They are provided
3
+ # by a third-party and are governed by separate terms of service, privacy
4
+ # policy, and support documentation.
5
+
6
+ name : PR Dependency Review
7
+ on : [pull_request]
8
+
9
+ permissions :
10
+ contents : read
11
+
12
+ jobs :
13
+ dependency-review :
14
+ runs-on : ubuntu-latest
15
+ name : Scan PR for dependency issues
16
+ permissions :
17
+ pull-requests : write
18
+ steps :
19
+ - name : Checkout Repository
20
+ uses : actions/checkout@v4
21
+
22
+ - name : Dependency Review
23
+ uses : actions/dependency-review-action@v3
24
+ with :
25
+ config-file : ./.github/dependency-review-config.yml
You can’t perform that action at this time.
0 commit comments