diff --git a/README.md b/README.md index d82b70f..3435f92 100644 --- a/README.md +++ b/README.md @@ -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 | diff --git a/action.yml b/action.yml index 9687d07..ead2a6c 100644 --- a/action.yml +++ b/action.yml @@ -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'