Skip to content

Commit 14aca55

Browse files
author
Felipe Costa
committed
Update action.yml
1 parent d16f076 commit 14aca55

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

action.yml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,7 @@ inputs:
1010
default: us-west-2
1111
acceptedQty:
1212
description: "Severity trigger"
13-
required: false
14-
default: 10
13+
required: true
1514
template:
1615
description: "Location of the file to be scanned, eg template.yml."
1716
required: true
@@ -22,10 +21,10 @@ runs:
2221
using: 'node12'
2322
main: 'scan.js'
2423
env:
25-
apikey: '${{ inputs.apikey }}'
26-
region: '${{ inputs.region }}'
27-
template: '${{ inputs.template }}'
28-
acceptedQty: ${{ inputs.acceptedQty }}'
24+
apikey: ${{ inputs.apikey }}
25+
region: ${{ inputs.region }}
26+
template: ${{ inputs.template }}
27+
acceptedQty: ${{ inputs.acceptedQty }}
2928
# using: 'docker'
3029
# image: 'Dockerfile'
3130
# env:

0 commit comments

Comments
 (0)