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 04824a6 commit 2148f92Copy full SHA for 2148f92
.github/workflows/check-vulns.yml
@@ -6,11 +6,15 @@ on:
6
nodejsStream:
7
type: string
8
default: 'main'
9
+ secrets:
10
+ NVD_API_KEY:
11
+ required: true
12
workflow_dispatch:
13
inputs:
14
15
16
17
+
18
19
20
permissions:
@@ -39,7 +43,7 @@ jobs:
39
43
run: |
40
44
(
41
45
set -o pipefail
42
- python main.py --gh-token ${{ secrets.GITHUB_TOKEN }} 2>&1 | tee result.log
46
+ python main.py --gh-token ${{ secrets.GITHUB_TOKEN }} --nvd-key={{ secrets.NVD_API_KEY }} 2>&1 | tee result.log
47
)
48
- name: collect error
49
id: collect_error
0 commit comments