Trivy Scan #349
This file contains 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 Scan | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: "17 17 * * *" | |
permissions: | |
contents: read | |
jobs: | |
build: | |
permissions: | |
contents: read | |
security-events: write | |
name: Scan | |
runs-on: "ubuntu-latest" | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v3 | |
- name: Get repository name | |
run: echo "REPOSITORY_NAME=${GITHUB_REPOSITORY#*/}" >> $GITHUB_ENV | |
- name: Setup Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: "^1.17" | |
- name: Install tools | |
uses: redhat-actions/openshift-tools-installer@v1 | |
with: | |
source: "github" | |
kustomize: "latest" | |
ko: "latest" | |
- name: Build container | |
env: | |
KO_DOCKER_REPO: ko.local | |
PLATFORMS: linux/amd64 | |
run: | | |
export SOURCE_DATE_EPOCH=$(date +%s) | |
ko build -B -t ${{ github.sha }} --platform=$PLATFORMS . | |
- name: Run Trivy vulnerability scanner | |
uses: aquasecurity/trivy-action@0.11.0 | |
with: | |
image-ref: "ko.local/${{ env.REPOSITORY_NAME }}:${{ github.sha }}" | |
format: "sarif" | |
output: "trivy-results.sarif" | |
severity: "CRITICAL,HIGH" | |
- name: Upload Trivy scan results to GitHub Security tab | |
uses: github/codeql-action/upload-sarif@v2 | |
with: | |
sarif_file: "trivy-results.sarif" | |
category: Trivy |