Skip to content

Commit

Permalink
Updated default args for vuln scanning
Browse files Browse the repository at this point in the history
  • Loading branch information
gmsdelmundo committed Apr 26, 2024
1 parent dd96735 commit 2294899
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 7 deletions.
2 changes: 1 addition & 1 deletion actions/vulnerability_scan/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ inputs:
default: CRITICAL,HIGH
failure_severity:
description: The severity that will cause the action to fail if a vulnerability at that level is detected. UNKNOWN,LOW,MEDIUM,HIGH,CRITICAL
default: CRITICAL
default: CRITICAL,HIGH
publish_vulnerabilities:
description: If true, will attempt to publish the results to the GitHub security tab
default: 'true'
Expand Down
10 changes: 4 additions & 6 deletions actions/vulnerability_scan_filesystem/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,13 @@ name: Vulnerability Scanning
description: Scans the file system for vulnerabilities
inputs:
scan_severity:
description: 'The severity that will cause the action to report if a vulnerability at that level is detected. UNKNOWN,LOW,MEDIUM,HIGH,CRITICAL'
required: false
default: 'CRITICAL,HIGH'
description: The severity that will cause the action to report if a vulnerability at that level is detected. UNKNOWN,LOW,MEDIUM,HIGH,CRITICAL
default: CRITICAL,HIGH
failure_severity:
description: 'The severity that will cause the action to fail if a vulnerability at that level is detected. UNKNOWN,LOW,MEDIUM,HIGH,CRITICAL'
required: false
default: 'CRITICAL'
default: CRITICAL,HIGH
publish_vulnerabilities:
description: 'If true, will attempt to publish the results to the GitHub security tab'
description: If true, will attempt to publish the results to the GitHub security tab
required: false
default: 'true'
runs:
Expand Down

0 comments on commit 2294899

Please sign in to comment.