-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathaction.yml
39 lines (39 loc) · 1.38 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
name: "Action for Tenable WAS"
description: "Allows users to trigger a WAS scan via a Github Action"
author: "Gavin D'mello"
inputs:
folder_name:
description: "Name of the folder in which the scan resides"
default: "My Scans"
scan_name:
description: "Scan name used while configuring the WAS scan on Tenable Lumin"
check_thresholds:
description: "If the user wants to block builds based on the threshold checks"
default: "false"
wait_for_results:
description: "If the action should wait for the scan results"
default: "false"
low_vulns_threshold:
description: "Low vulnerability threshold defined by the user"
default: 0
medium_vulns_threshold:
description: "Medium vulnerability threshold defined by the user"
default: 0
high_vulns_threshold:
description: "High vulnerability threshold defined by the user"
default: 0
critical_vulns_threshold:
description: "Critical vulnerability threshold defined by the user"
default: 0
outputs:
number_of_low_severity_findings:
description: "Number of low severity findings"
number_of_medium_severity_findings:
description: "Number of medium severity findings"
number_of_high_severity_findings:
description: "Number of high severity findings"
number_of_critical_severity_findings:
description: "Number of critical severity findings"
runs:
using: "docker"
image: "Dockerfile"