alexjurkiewicz/AWS ECR Scan Docker Image
Scan a Docker image stored in AWS ECR and fail if vulnerabilities are found.
View on GitHubTrust Signals
- Scorecard Score
- not yet scored
- Maintenance Recency
- Stale
- License
- None
Inputs
| name | description | required | default |
|---|---|---|---|
| repository | ECR repository, eg myorg/myimage. | yes | — |
| tag | Image tag to scan. | yes | — |
| fail_threshold | Fail if any vulnerabilities equal to or over this severity level are detected. Valid values: critical, high, medium, low, informational. | — | medium |
| ignore_list | List of CVE IDs to ignore in the vulnerability findings. | — | — |
| error_missed_ignores | Set to "error" if you want to raise an error when CVEs in the ignore list are not found. Set to "warn" to raise a warning only, and prevent the workflow from failing when CVEs in the ignore list are not found. | no | error |
Outputs
| name | description |
|---|---|
| critical | Number of critical vulnerabilities detected. |
| high | Number of high vulnerabilities detected. |
| medium | Number of medium vulnerabilities detected. |
| low | Number of low vulnerabilities detected. |
| informational | Number of informational vulnerabilities detected. |
| unknown | Number of unknown severity vulnerabilities detected. |
| total | Total number of vulnerabilities detected. |
| findingsDetails | Details of findings. |