Update Dockerfile #20
Workflow file for this run
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: "Build Docker image and run Trivy vulnerability scan" | |
on: | |
push: | |
tags: | |
- "3.*" # Trigger the action on any tag push for version 3 on | |
# branches: [main] # Causes the action to run on push | |
env: | |
REGISTRY: ghcr.io | |
IMAGE_NAME: ${{ github.repository }} | |
jobs: | |
build: | |
name: Build Docker image | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
packages: write | |
security-events: write | |
steps: | |
#---------------------------------------------- | |
# Checkout repo | |
#---------------------------------------------- | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
#---------------------------------------------- | |
# Set up Docker BuildX environment | |
#---------------------------------------------- | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
#---------------------------------------------- | |
# Log Docker into the GitHub Container Repository | |
#---------------------------------------------- | |
- name: Log into registry ${{ env.REGISTRY }} | |
uses: docker/login-action@v3 | |
with: | |
registry: ${{ env.REGISTRY }} | |
username: ${{ github.actor }} | |
password: ${{ secrets.GH_PAT }} # GitHub Personal Access Token | |
#---------------------------------------------- | |
# Extract Docker image metadata from GitHub events | |
#---------------------------------------------- | |
- name: Extract Docker metadata | |
id: meta | |
uses: docker/metadata-action@v5 | |
with: | |
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} | |
tags: ${{ github.ref_name }} # Use the tag name | |
flavor: | | |
latest=true | |
#---------------------------------------------- | |
# Build and push Docker image | |
#---------------------------------------------- | |
- name: Build and push Docker image | |
uses: docker/build-push-action@v6 | |
with: | |
context: . | |
push: true | |
tags: ${{ steps.meta.outputs.tags }} | |
labels: ${{ steps.meta.outputs.labels }} | |
scan: | |
name: Image vulnerability scan | |
runs-on: ubuntu-latest | |
needs: [build] | |
permissions: | |
actions: read | |
contents: read | |
packages: read | |
security-events: write | |
steps: | |
#---------------------------------------------- | |
# Run vulnerability scan on built image | |
#---------------------------------------------- | |
- name: Run Trivy vulnerability scanner | |
uses: aquasecurity/[email protected] | |
with: | |
scan-type: "image" | |
image-ref: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ github.ref_name }} | |
vuln-type: "os,library" | |
severity: "HIGH,CRITICAL" | |
format: "sarif" | |
output: "trivy-results.sarif" | |
- name: Upload Trivy scan results to GitHub Security tab | |
uses: github/codeql-action/upload-sarif@v3 | |
with: | |
sarif_file: "trivy-results.sarif" |