-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
33 lines (32 loc) · 1013 Bytes
/
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
# action.yml
name: 'Data Theorem API Secure'
description: |
Request an asset scan from Data Theorem.
inputs:
dt_results_api_key:
description: 'Data Theorem Results API key'
required: true
asset_id:
description: 'ID of the asset to scan'
required: true
asset_base_url:
description: 'Base url of the asset to scan'
required: true
should_perform_pii_analysis:
description: >
If set to true, the API responses received by the scanner will be analyzed for personally identifiable information
required: false
default: false
should_perform_sql_injection_scan:
description: >
If set to true, the API’s parameters will be scanned for SQL injection issues.
This type of scan requires sending a lot of requests to the API,
it will significantly increase the load on the API, and could potentially disrupt it.
required: false
default: false
runs:
using: 'docker'
image: 'Dockerfile'
branding:
color: 'blue'
icon: 'arrow-up-circle'