feat: scan for vuln #14
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
name: Scan for vulnerabilities | |
on: | |
pull_request: | |
branches: [main] | |
types: [milestoned, opened, synchronize] | |
schedule: | |
- cron: '0 1 * * *' | |
workflow_dispatch: {} | |
jobs: | |
validate: | |
runs-on: ubuntu-latest | |
name: Scan for vulnerabilities | |
permissions: | |
contents: read | |
pull-requests: read | |
steps: | |
- name: Checkout | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
with: | |
fetch-depth: 0 | |
- name: Environment setup # this is required for scanning ironbank images | |
uses: defenseunicorns/uds-common/.github/actions/setup@e2ad99f7caba1b0d08856918db9385a431cfdbca # v0.3.3 | |
with: | |
username: ${{ secrets.IRON_BANK_ROBOT_USERNAME }} | |
password: ${{ secrets.IRON_BANK_ROBOT_PASSWORD }} | |
- name: Scan the repository for vulnerabilities | |
run: | | |
uds run vuln-check:grype-scan-sbom | |
- name: Upload SARIF files | |
uses: github/codeql-action/upload-sarif@1b1aada464948af03b950897e5eb522f92603cc2 # v3.0.0 | |
with: | |
sarif_file: 'sarif/' |