This repository has been archived by the owner on Sep 18, 2024. It is now read-only.
Add make sprint-data-import and issue-data-import to import github sprint and issue data to database #4
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 Vulnerability Scans | |
on: | |
pull_request: | |
paths: | |
- .grype.yml | |
- .hadolint.yaml | |
- .trivyignore | |
- .github/workflows/ci-vulnerability-scans.yml | |
jobs: | |
vulnerability-scans: | |
name: Vulnerability Scans | |
strategy: | |
matrix: | |
app_name: ["frontend", "api", "analytics"] | |
uses: ./.github/workflows/vulnerability-scans.yml | |
with: | |
app_name: ${{ matrix.app_name }} |