-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yaml
49 lines (47 loc) · 1.5 KB
/
action.yaml
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
# action.yml
name: "42Crunch REST API Dynamic Security Testing Freemium"
description: "This action adds 42Crunch dynamic API security testing (DAST) to your workflows."
inputs:
upload-to-code-scanning:
description: "Upload results to Code Scanning Alerts"
required: false
default: "true"
token:
description: "Personal Access Token"
default: ${{ github.token }}
target-url:
description: "The URL of the API deployment used by the scan. It must be a public URL or an internal URL accessible from the runner."
required: true
api-definition:
description: "Filename of the API to scan, relative to the workspace root."
required: true
api-credential:
description: "The API key or token required to invoke the API hosted at target-host - This value can come from a GitHub secret or dynamically obtained in a previous pipeline step."
required: false
log-level:
description: "Log level"
required: false
default: "info"
data-enrich:
description: "Enrich the OpenAPI file leveraging the default data dictionary"
required: false
default: "false"
sarif-report:
description: "SARIF report"
required: false
scan-report:
description: "Scan report file"
required: false
export-as-pdf:
description: "Export the scan report as PDF"
required: false
enforce-sqg:
description: "Enforce Security Quality Gate"
required: false
default: "false"
branding:
icon: "eye"
color: "purple"
runs:
using: "docker"
image: "Dockerfile"