Scheduled vulnerabiltiy scanning #17
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: Scheduled vulnerabiltiy scanning | |
on: | |
schedule: | |
- cron: '35 6 * * 2' | |
workflow_dispatch: | |
jobs: | |
vulnerability-scan: | |
permissions: | |
contents: read # for actions/checkout to fetch code | |
security-events: write # for github/codeql-action/upload-sarif to upload SARIF results | |
strategy: | |
fail-fast: false | |
matrix: | |
version: | |
- latest | |
- v11.0.0 | |
name: Scheduled scan for vulnerabilities ${{ matrix.version }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: Run Trivy vulnerability scanner | |
uses: aquasecurity/trivy-action@master | |
with: | |
image-ref: 'ghcr.io/ba-st/pharo:${{ matrix.version }}' | |
format: 'sarif' | |
output: 'trivy-results.sarif' | |
severity: 'CRITICAL,HIGH' | |
limit-severities-for-sarif: true | |
ignore-unfixed: true | |
- name: Upload Trivy scan results to GitHub Security tab | |
uses: github/codeql-action/upload-sarif@v3 | |
with: | |
sarif_file: 'trivy-results.sarif' | |
category: 'ghcr.io/ba-st/pharo:${{ matrix.version }}' |