Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update specifity of severity input description #170

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ Following inputs can be used as `step.with` keys
| `image` | String | Container image to scan (e.g. `alpine:3.7`) |
| `tarball` | String | Container image tarball path to scan |
| `dockerfile` | String | Dockerfile required to generate a sarif report |
| `severity` | String | Report vulnerabilities of provided level or higher (default: `UNKNOWN,LOW,MEDIUM,HIGH,CRITICAL`) |
| `severity` | String | List of severity level(s) to report (default: `UNKNOWN,LOW,MEDIUM,HIGH,CRITICAL`) |
| `severity_threshold` | String | Defines threshold for severity |
| `annotations` | Bool | Create GitHub annotations in your workflow for vulnerabilities discovered |

Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ inputs:
description: 'Dockerfile required to generate a sarif report'
required: false
severity:
description: 'Report vulnerabilities of provided level or higher (default: UNKNOWN,LOW,MEDIUM,HIGH,CRITICAL)'
description: 'List of severity level(s) to report (default: UNKNOWN,LOW,MEDIUM,HIGH,CRITICAL)'
required: false
severity_threshold:
description: 'Defines threshold for severity'
Expand Down