forked from epsylabs/action-ecr-scan
-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
42 lines (38 loc) · 1.03 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
name: "Scan docker image in ECR repository"
description: "Scan given image in ECR repository using AWS Scanning feature"
author: "Epsy Engineering <[email protected]>"
inputs:
name:
description: Name of your ECR repository
required: true
tag:
description: Image tag to scan
required: true
region:
description: The AWS region
default: us-east-1
required: false
fail_threshold:
description: Mark task as failed if given errors are found
default: HIGH
required: false
ignore_errors:
description: Comma separated list of CVE codes not to be reported
default: ''
required: false
outputs:
critical:
description: Number of critical findings
high:
description: Number of high findings
informational:
description: Number of informational findings
low:
description: Number of low findings
medium:
description: Number of medium findings
undefined:
description: Number of undefined findings
runs:
using: "docker"
image: "docker://epsylabs/action-ecr-scan"