forked from S-DADUDIDA/GitHubPackagesSecurityAction
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathaction.yml
38 lines (38 loc) · 1.04 KB
/
action.yml
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
name: 'GP Security Scan'
description: 'Scan packages and Docker images uploaded to GitHub Packages'
author: 'WhiteSource'
inputs:
gp-token:
description: 'GitHub access token with read/write privileges to GitHub Packages'
required: true
ws-destination-url:
description: 'WS environment destination url'
required: true
ws-api-key:
description: 'WS organization api key'
required: true
ws-user-key:
description: 'WS user key'
required: true
ws-product-key:
description: 'WS product key to publish results to'
required: false
print-scan-report:
description: 'Whether to print the results report'
required: false
default: false
actions_step_debug:
description: 'Whether to print debug logs'
required: false
default: false
outputs:
scan-report-file-path:
description: 'Path of the scan report file'
scan-report-folder-path:
description: 'Path of the folder of the scan report file'
runs:
using: 'node12'
main: 'src/main.js'
branding:
icon: 'shield'
color: 'purple'