Skip to content

Trivy Vulnerability Scan #196

Trivy Vulnerability Scan

Trivy Vulnerability Scan #196

Workflow file for this run

# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
name: Trivy Vulnerability Scan
on:
push:
branches: ['main']
pull_request:
# The branches below must be a subset of the branches above
branches: ['main']
schedule:
- cron: '0 5 * * *'
env:
IMAGE_NAME: 'aessing/bind'
permissions:
contents: read
jobs:
build:
name: Vulnerability scan
permissions:
contents: read # for actions/checkout to fetch code
security-events: write # for github/codeql-action/upload-sarif to upload SARIF results
actions: read # only required for a private repository by github/codeql-action/upload-sarif to get the Action run status
runs-on: 'ubuntu-latest'
steps:
- name: Checkout code
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
with:
token: ${{ secrets.GITHUB_TOKEN }}
- name: Build an image from Dockerfile
run: |
docker build -t docker.io/${{ env.IMAGE_NAME }}:trivy-${{ github.sha }} .
- name: Run Trivy vulnerability scanner (image)
uses: aquasecurity/trivy-action@76071ef0d7ec797419534a183b498b4d6366cf37
with:
image-ref: 'docker.io/${{ env.IMAGE_NAME }}:trivy-${{ github.sha }}'
format: 'sarif'
output: 'trivy-image-results.sarif'
severity: 'CRITICAL,HIGH'
exit-code: '1'
- name: Run Trivy vulnerability scanner (requirements.txt)
uses: aquasecurity/trivy-action@76071ef0d7ec797419534a183b498b4d6366cf37
with:
scan-type: 'fs'
scan-ref: '.'
format: 'sarif'
output: 'trivy-py-results.sarif'
severity: 'CRITICAL,HIGH'
exit-code: '1'
- name: Upload Trivy image scan results to GitHub Security tab
uses: github/codeql-action/upload-sarif@ce28f5bb42b7a9f2c824e633a3f6ee835bab6858
with:
sarif_file: 'trivy-image-results.sarif'
category: 'trivy-image'
- name: Upload Trivy Python scan results to GitHub Security tab
uses: github/codeql-action/upload-sarif@ce28f5bb42b7a9f2c824e633a3f6ee835bab6858
with:
sarif_file: 'trivy-py-results.sarif'
category: 'trivy-python'
- name: Docker cleanup
run: |
docker rmi docker.io/${{ env.IMAGE_NAME }}:trivy-${{ github.sha }} || true