From 21d0c7b158aca2978a813ed5c0fab0dc1c4a3cd7 Mon Sep 17 00:00:00 2001 From: dx4homelab <145386996+dx4homelab@users.noreply.github.com> Date: Tue, 10 Mar 2026 12:43:40 -0600 Subject: [PATCH] fix: add --yes flag to cosign sign to fix Rekor upload failures Resolves #4254 Co-Authored-By: Claude Opus 4.6 --- .github/workflows/reusable-build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/reusable-build.yml b/.github/workflows/reusable-build.yml index a8a258ba5ab..3d5929a061a 100644 --- a/.github/workflows/reusable-build.yml +++ b/.github/workflows/reusable-build.yml @@ -203,7 +203,7 @@ jobs: - name: Sign container image if: github.event_name != 'pull_request' run: | - cosign sign -y --key env://COSIGN_PRIVATE_KEY ${{ steps.registry_case.outputs.lowercase }}/${{ env.IMAGE_NAME }}@${TAGS} + cosign sign -y --yes --key env://COSIGN_PRIVATE_KEY ${{ steps.registry_case.outputs.lowercase }}/${{ env.IMAGE_NAME }}@${TAGS} env: TAGS: ${{ steps.push.outputs.outputs && fromJSON(steps.push.outputs.outputs).digest }} COSIGN_EXPERIMENTAL: false