This repository was archived by the owner on Feb 22, 2026. It is now read-only.
Trivy scanner #23
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: Trivy scanner | |
| on: | |
| pull_request: | |
| branches: [master] | |
| push: | |
| branches: [master] | |
| schedule: | |
| - cron: '29 19 * * 4' | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| jobs: | |
| build: | |
| name: Build | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| security-events: write | |
| actions: read | |
| env: | |
| IMAGE_TAG: nethermind:${{ github.sha }} | |
| steps: | |
| - name: Check out repository | |
| uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 #v4.2.1 | |
| - name: Build Docker image | |
| run: docker build -t $IMAGE_TAG . | |
| - name: Scan | |
| uses: aquasecurity/trivy-action@915b19bbe73b92a6cf82a1bc12b087c9a19a5fe2 #v0.28.0 | |
| with: | |
| image-ref: ${{ env.IMAGE_TAG }} | |
| format: template | |
| template: '@/contrib/sarif.tpl' | |
| output: trivy-results.sarif | |
| severity: CRITICAL,HIGH | |
| env: | |
| TRIVY_DB_REPOSITORY: public.ecr.aws/aquasecurity/trivy-db | |
| - name: Upload scan results | |
| uses: github/codeql-action/upload-sarif@cf5b0a9041d3c1d336516f1944c96d96598193cc #v2.19.1 | |
| with: | |
| sarif_file: trivy-results.sarif |