[Unticketed] Ignore vulnerability for issue fixed in upcoming Python release #566
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# GitHub Actions CI workflow that runs vulnerability scans on the application's Docker image | |
# to ensure images built are secure before they are deployed. | |
name: CI Frontend Vulnerability Scans | |
on: | |
pull_request: | |
paths: | |
- .grype.yml | |
- .hadolint.yaml | |
- .trivyignore | |
- .github/workflows/vulnerability-scans.yml | |
- frontend/Dockerfile | |
- frontendpi/package.json | |
- frontend/package-lock.json | |
jobs: | |
vulnerability-scans: | |
name: Vulnerability Scans | |
uses: ./.github/workflows/vulnerability-scans.yml | |
with: | |
app_name: frontend |