Skip to content

chore(deps): bump alpine from 3.21.0 to 3.21.1 #17

chore(deps): bump alpine from 3.21.0 to 3.21.1

chore(deps): bump alpine from 3.21.0 to 3.21.1 #17

Workflow file for this run

---
name: trivy-analysis
# yamllint disable-line rule:truthy
on:
push:
branches:
- "main"
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
trivy-analysis:
name: trivy-analysis
runs-on: "ubuntu-20.04"
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Build an image from Dockerfile
run: |
docker build -t docker.io/dokku/ambassador:${{ github.sha }} .
- name: Run Trivy vulnerability scanner
uses: aquasecurity/trivy-action@master
with:
image-ref: "docker.io/dokku/ambassador:${{ github.sha }}"
format: "template"
template: "@/contrib/sarif.tpl"
output: "trivy-results.sarif"
severity: "CRITICAL,HIGH"
- name: Upload Trivy scan results to GitHub Security tab
uses: github/codeql-action/upload-sarif@v3
with:
sarif_file: "trivy-results.sarif"