generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathaction.yml
More file actions
46 lines (45 loc) · 1.3 KB
/
action.yml
File metadata and controls
46 lines (45 loc) · 1.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
name: 'VulnCheck Action'
description: 'Integrate VulnCheck into your GitHub Actions workflow'
author: 'Kevin Olson <kolson@vulncheck.com>'
branding:
icon: 'shield'
color: gray-dark
inputs:
github-token:
description: The GitHub token used to create an authenticated client
default: ${{ github.token }}
required: false
token:
description: 'VulnCheck Token'
required: true
command:
description: 'Command to run'
default: 'scan'
scan-path:
description: 'Path to scan'
required: false
default: './'
scan-cvss-base-threshold:
description: 'CVSS Threshold to fail the workflow'
required: false
scan-cvss-temporal-threshold:
description: 'CVSS Temporal Threshold to fail the workflow'
required: false
scan-cve-details:
description:
'Include an annotation for every found CVE showing package type,
cataloger, and locations'
required: false
scan-cve-npm-rel:
description: 'Attempt to use npm to trace CVE package to its owner'
required: false
outputs:
scan-output:
description: 'Output results if a scan is run'
scan-count:
description: 'Output count of vulnerabilities if a scan is run'
scan-signature:
description: 'SHA256 hash of the scan results (used to detect change)'
runs:
using: node20
main: dist/index.js