Bump the actions-dependencies group across 1 directory with 9 updates #1313
Workflow file for this run
This file contains hidden or 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
| # Runs linter for Docker files | |
| name: Trivy | |
| on: | |
| workflow_dispatch: | |
| schedule: | |
| # Runs at 22:45 UTC on Thursday. | |
| - cron: '45 22 * * 4' | |
| push: | |
| pull_request: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
| cancel-in-progress: true | |
| permissions: | |
| contents: read | |
| jobs: | |
| linux: | |
| name: Trivy | |
| runs-on: ${{ github.repository_owner == 'oneapi-src' && 'intel-ubuntu-22.04' || 'ubuntu-latest' }} | |
| permissions: | |
| security-events: write | |
| steps: | |
| - name: Clone repo | |
| uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 | |
| - name: Run Trivy | |
| uses: aquasecurity/trivy-action@b6643a29fecd7f34b3597bc6acb0a98b03d33ff8 # v0.33.1 | |
| with: | |
| scan-type: 'config' | |
| hide-progress: false | |
| format: 'sarif' | |
| output: 'trivy-results.sarif' | |
| exit-code: 1 # Fail if issue found | |
| # file with suppressions: .trivyignore (in root dir) | |
| - name: Print report and trivyignore file | |
| run: | | |
| echo "### Trivy ignore content:" | |
| cat .trivyignore | |
| echo "### Trivy report:" | |
| cat trivy-results.sarif | |
| - name: Upload results | |
| uses: github/codeql-action/upload-sarif@f443b600d91635bebf5b0d9ebc620189c0d6fba5 # v4.30.8 | |
| with: | |
| sarif_file: 'trivy-results.sarif' |