Skip to content
Merged
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
5 changes: 4 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -108,9 +108,12 @@ jobs:
trivy-report:
# Non-blocking CVE visibility on the freshly published images (base-image CVEs
# are not self-fixable, so this reports instead of failing the build).
# continue-on-error keeps the run green even if Trivy itself errors (DB download,
# rate limit) — this job is purely informational and must never block a publish.
if: github.event_name != 'pull_request'
needs: build-test-and-push
runs-on: ubuntu-latest
continue-on-error: true
permissions:
contents: read
strategy:
Expand All @@ -119,7 +122,7 @@ jobs:
fail-fast: false
steps:
- name: Scan image for HIGH/CRITICAL CVEs
uses: aquasecurity/trivy-action@0.28.0
uses: aquasecurity/trivy-action@v0.36.0
with:
image-ref: headgent/phpcli:${{ matrix.php_version }}
format: table
Expand Down
Loading