Skip to content

Commit 2168d20

Browse files
Merge pull request #151 from IABTechLab/vse-UID2-4968-ignore-google-auth-private-key-string-secret
Ignore false positive private key secret in google-auth python lib
2 parents 335afd1 + a68faf0 commit 2168d20

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

actions/vulnerability_scan/action.yaml

+6
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@ inputs:
1919
full_report:
2020
description: Whether to scan and report for MEDIUM,HIGH,CRITICAL
2121
default: 'false'
22+
skip_files:
23+
description: Comma separated list of files to skip during scanning
24+
default: ''
2225
runs:
2326
using: "composite"
2427
steps:
@@ -81,6 +84,7 @@ runs:
8184
with:
8285
image-ref: ${{ inputs.image_ref }}
8386
scan-type: ${{ inputs.scan_type }}
87+
skip-files: ${{ inputs.skip_files }}
8488
format: 'sarif'
8589
exit-code: '0'
8690
ignore-unfixed: true
@@ -103,6 +107,7 @@ runs:
103107
with:
104108
image-ref: ${{ inputs.image_ref }}
105109
scan-type: ${{ inputs.scan_type }}
110+
skip-files: ${{ inputs.skip_files }}
106111
format: 'table'
107112
exit-code: '0'
108113
ignore-unfixed: true
@@ -117,6 +122,7 @@ runs:
117122
with:
118123
image-ref: ${{ inputs.image_ref }}
119124
scan-type: ${{ inputs.scan_type }}
125+
skip-files: ${{ inputs.skip_files }}
120126
format: 'table'
121127
exit-code: '1'
122128
ignore-unfixed: true

0 commit comments

Comments
 (0)