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
7 changes: 6 additions & 1 deletion .github/workflows/reusable-docker-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -462,7 +462,12 @@ jobs:

cosign:
name: cosign (sign + attest)
needs: [build, trivy]
# Deliberately not gated on `trivy`. The image is already pushed by the
# time the scan runs, so a failing scan does not withhold the artefact,
# only its signature, and consumers end up with an unsigned image that
# shipped anyway. A signature attests provenance, not the absence of
# CVEs; the scan keeps its own red check. See FerrTrack-Cloud#712.
needs: build
if: inputs.push
# cosign from its static binary (not cosign-installer, which needs
# envsubst/gettext absent from the minimal ARC image) so signing runs on the
Expand Down
Loading