Skip to content

Commit

Permalink
feat(ci): make trivy workflow reusable
Browse files Browse the repository at this point in the history
  • Loading branch information
visibilityspots committed Nov 7, 2024
1 parent edab8f3 commit 6a91e0d
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions .github/workflows/trivy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,51 +2,51 @@ name: trivy

on:
push:
tags:
- '*'
schedule:
- cron: '44 19 * * 4'
workflow_call:

permissions:
contents: read

env:
DOCKERHUB_USERNAME: ${{ vars.DOCKERHUB_USERNAME }}
DOCKERHUB_REPOSITORY: ${{ vars.DOCKERHUB_REPOSITORY }}
TRIVY_DB_REPOSITORY: 'public.ecr.aws/aquasecurity/trivy-db'
TRIVY_JAVA_DB_REPOSITORY: 'public.ecr.aws/aquasecurity/trivy-java-db'

jobs:
scan:
permissions:
contents: read
security-events: write
runs-on: "ubuntu-latest"

runs-on: 'ubuntu-latest'

steps:
- name: Checkout code
uses: actions/checkout@v4
- uses: actions/checkout@v4

- name: Build an image from Dockerfile
run: |
docker build -t visibilityspots/cloudflared:dev .
docker build -t ${{ env.DOCKERHUB_USERNAME }}/${{ env.DOCKERHUB_REPOSITORY }}:dev .
- name: Run Trivy vulnerability scanner
uses: aquasecurity/[email protected]
with:
image-ref: 'visibilityspots/cloudflared:dev'
image-ref: '${{ env.DOCKERHUB_USERNAME }}/${{ env.DOCKERHUB_REPOSITORY }}:dev'
format: 'table'
exit-code: 0
ignore-unfixed: true
severity: 'CRITICAL,HIGH'
env:
TRIVY_DB_REPOSITORY: 'public.ecr.aws/aquasecurity/trivy-db'
TRIVY_JAVA_DB_REPOSITORY: 'public.ecr.aws/aquasecurity/trivy-java-db'

- name: Run Trivy vulnerability scanner
- name: Store Trivy vulnerability scanner output
uses: aquasecurity/[email protected]
with:
image-ref: 'visibilityspots/cloudflared:dev'
image-ref: '${{ env.DOCKERHUB_USERNAME }}/${{ env.DOCKERHUB_REPOSITORY }}:dev'
format: 'sarif'
output: 'trivy-results.sarif'
ignore-unfixed: true
severity: 'CRITICAL,HIGH'
env:
TRIVY_DB_REPOSITORY: 'public.ecr.aws/aquasecurity/trivy-db'
TRIVY_JAVA_DB_REPOSITORY: 'public.ecr.aws/aquasecurity/trivy-java-db'

- name: Upload Trivy scan results to GitHub Security tab
uses: github/codeql-action/upload-sarif@v3
Expand Down

0 comments on commit 6a91e0d

Please sign in to comment.