Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:

# Scheduled scan: scan existing published image
- name: Run Trivy vulnerability scanner on published image
uses: aquasecurity/trivy-action@0.33.1
uses: aquasecurity/trivy-action@0.34.1
if: github.event_name == 'schedule' || github.event_name == 'workflow_dispatch'
with:
image-ref: ghcr.io/${{ env.REPO }}:latest
Expand All @@ -50,7 +50,7 @@ jobs:
sarif_file: "trivy-docker-results.sarif"

- name: Run Trivy vulnerability scanner (table output for scheduled)
uses: aquasecurity/trivy-action@0.33.1
uses: aquasecurity/trivy-action@0.34.1
if: github.event_name == 'schedule' || github.event_name == 'workflow_dispatch'
with:
image-ref: ghcr.io/${{ env.REPO }}:latest
Expand Down Expand Up @@ -115,7 +115,7 @@ jobs:
cache-to: type=gha,mode=max

- name: Run Trivy vulnerability scanner on Docker image
uses: aquasecurity/trivy-action@0.33.1
uses: aquasecurity/trivy-action@0.34.1
if: github.event_name != 'schedule' && github.event_name != 'workflow_dispatch'
with:
image-ref: ${{ env.REPO }}:scan
Expand All @@ -130,7 +130,7 @@ jobs:
sarif_file: "trivy-docker-results.sarif"

- name: Run Trivy vulnerability scanner (table output)
uses: aquasecurity/trivy-action@0.33.1
uses: aquasecurity/trivy-action@0.34.1
if: github.event_name != 'schedule' && github.event_name != 'workflow_dispatch'
with:
image-ref: ${{ env.REPO }}:scan
Expand Down
Loading