-
Notifications
You must be signed in to change notification settings - Fork 41
/
action.yml
60 lines (60 loc) · 1.72 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
name: Prisma Cloud Scan
description: Scan container images for vulnerabilities and compliance issues
branding:
color: orange
icon: search
inputs:
pcc_console_url:
description: URL of your Prisma Cloud Compute Console
required: true
pcc_user:
description: Username of a user with the CI user role
required: true
pcc_pass:
description: Password of a user with the CI user role
required: true
image_name:
description: Name (or ID) of the image to be scanned
required: true
project:
description: Tenant project context for the command
required: false
containerized:
description: Run the scan from inside a running container (must be 'true', 'yes', 'y', or '1')
required: false
results_file:
description: File to which scan results are written
required: false
default: pcc_scan_results.json
sarif_file:
description: File to which scan results are written in SARIF
required: false
default: pcc_scan_results.sarif.json
docker_address:
description: Address of the Docker daemon
required: false
docker_tlscacert:
description: Path to the Docker CA certificate
required: false
docker_tlscert:
description: Path to the Docker client certificate
required: false
docker_tlskey:
description: Path to the Docker client private key
required: false
twistcli_debug:
description: Activate the twistlock debug mode
required: false
twistcli_publish:
description: Publish the results to Prisma Cloud
default: true
required: false
type: boolean
outputs:
results_file:
description: File containing scan results
sarif_file:
description: File containing scan results in SARIF
runs:
using: node20
main: dist/index.js