We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eea1c94 commit 7b1778cCopy full SHA for 7b1778c
1 file changed
.github/workflows/dependency-review.yml
@@ -0,0 +1,39 @@
1
+name: Dependency Review
2
+
3
+on:
4
+ pull_request:
5
6
+concurrency:
7
+ group: ${{ github.workflow }}-${{ github.ref }}
8
+ cancel-in-progress: true
9
10
+permissions:
11
+ contents: read
12
13
+jobs:
14
+ dependency-review:
15
+ runs-on: ubuntu-latest
16
+ steps:
17
+ - name: Checkout code
18
+ uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
19
+ with:
20
+ persist-credentials: false
21
22
+ - name: Dependency Review
23
+ uses: actions/dependency-review-action@a1d282b36b6f3519aa1f3fc636f609c47dddb294 # v5.0.0
24
25
+ allow-dependencies-licenses: |
26
+ pkg:npm/flatted,
27
+ pkg:npm/prettier
28
+ allow-licenses: |
29
+ 0BSD,
30
+ Apache-2.0,
31
+ BSD-2-Clause,
32
+ BSD-3-Clause,
33
+ BlueOak-1.0.0,
34
+ CC-BY-3.0,
35
+ CC-BY-4.0,
36
+ CC0-1.0,
37
+ ISC,
38
+ MIT,
39
+ MPL-2.0
0 commit comments