ci: fixed sarif file #10
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
| name: Vulnerability scans | |
| permissions: read-all | |
| # description: | | |
| # A fast vulnerability scan on the repo that effectively supplements ossf scorecard and codesql | |
| # and may run every day. | |
| # | |
| # * trivy reports are often more easily actionable than codeql reports. | |
| # * govumnscan supplements this analysis with a more go-specific approach | |
| # | |
| # NOTE: at this moment, we don't want to adopt snyk, which requires a token, provides an extra dashboard etc. | |
| # Most likely, snyk would be redundant with trivy. | |
| on: | |
| branch_protection_rule: | |
| push: | |
| branches: [ "master" ] | |
| schedule: | |
| - cron: '18 4 * * 3' | |
| jobs: | |
| analysis: | |
| name: Vulnerability scan | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| security-events: write | |
| steps: | |
| - | |
| uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 | |
| with: | |
| persist-credentials: false | |
| - | |
| name: Vulnerability scan by trivy | |
| uses: aquasecurity/trivy-action@b6643a29fecd7f34b3597bc6acb0a98b03d33ff8 # v0.33.1 | |
| with: | |
| scan-type: repo | |
| format: sarif | |
| hide-progress: false | |
| output: trivy-code-report.sarif | |
| scanners: vuln,secret | |
| exit-code: 0 | |
| - | |
| name: Upload trivy findings to code scanning dashboard | |
| uses: github/codeql-action/upload-sarif@014f16e7ab1402f30e7c3329d33797e7948572db # v4.31.3 | |
| with: | |
| category: trivy | |
| sarif_file: trivy-code-report.sarif | |
| govulnscan: | |
| name: go vulnerability scan | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| security-events: write | |
| steps: | |
| - | |
| id: govulncheck | |
| uses: golang/govulncheck-action@b625fbe08f3bccbe446d94fbf87fcc875a4f50ee # v1.0.4 | |
| with: | |
| output-format: sarif | |
| output-file: govulnscan-report.sarif | |
| - | |
| name: Upload govulnscan findings to code scanning dashboard | |
| uses: github/codeql-action/upload-sarif@014f16e7ab1402f30e7c3329d33797e7948572db # v4.31.3 | |
| with: | |
| category: govulnscan | |
| sarif_file: govulnscan-report.sarif |