Skip to content

Commit fa8c163

Browse files
committed
fix: Disable new bundle format and use known good cosign release
1 parent 3123310 commit fa8c163

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

.github/workflows/build.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -517,13 +517,14 @@ jobs:
517517
- name: Install Cosign
518518
if: github.event_name != 'pull_request'
519519
uses: sigstore/cosign-installer@cad07c2e89fa2edd6e2d7bab4c1aa38e53f76003 # v4.1.1
520+
with:
521+
cosign-release: "v2.6.1"
520522

521523
- name: Sign container image
522524
if: github.event_name != 'pull_request'
523525
run: |
524-
cosign sign -y --key env://COSIGN_PRIVATE_KEY ${{ steps.base.outputs.output_image }}@${{ steps.push.outputs.digest }}
526+
cosign sign -y --key env://COSIGN_PRIVATE_KEY --new-bundle-format=false ${{ steps.base.outputs.output_image }}@${{ steps.push.outputs.digest }}
525527
env:
526-
COSIGN_EXPERIMENTAL: false
527528
COSIGN_PRIVATE_KEY: ${{ secrets.SIGNING_SECRET }}
528529

529530
- name: Install ORAS

0 commit comments

Comments
 (0)