Skip to content

Trivy Scan Packager Develop #133

Trivy Scan Packager Develop

Trivy Scan Packager Develop #133

name: Trivy Scan Packager Develop
on:
push:
branches: [ "develop" ]
paths:
- 'async_packager/**'
- '.github/workflows/trivy-packager-develop.yml'
schedule:
- cron: '0 12 * * 2'
permissions:
contents: read
jobs:
build:
permissions:
contents: read # for actions/checkout to fetch code
security-events: write # for github/codeql-action/upload-sarif to upload SARIF results
name: Build
runs-on: "ubuntu-22.04"
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Build an image from Dockerfile
run: |
docker build -t async_packager:${{ github.sha }} async_packager
- name: Run Trivy vulnerability scanner on async_packager
uses: aquasecurity/trivy-action@7b7aa264d83dc58691451798b4d117d53d21edfe
with:
image-ref: 'async_packager:${{ github.sha }}'
format: 'sarif'
output: 'trivy-results.sarif'
ignore-unfixed: true
severity: 'CRITICAL,HIGH'
timeout: '20m'
- name: Upload Trivy scan results to GitHub Security tab
uses: github/codeql-action/upload-sarif@v2
with:
sarif_file: 'trivy-results.sarif'