From e33e880ffdb891c29fb3a1352f8a03eaff4a8f39 Mon Sep 17 00:00:00 2001 From: Bastian Hofmann Date: Wed, 12 Nov 2025 17:23:39 +0100 Subject: [PATCH] Fix cosign configuration with cosign 3 (installer 4) and Harbor See https://github.com/goharbor/harbor/issues/22401 --- .github/workflows/release-workflow.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release-workflow.yaml b/.github/workflows/release-workflow.yaml index 4139e8c..73fdf3b 100644 --- a/.github/workflows/release-workflow.yaml +++ b/.github/workflows/release-workflow.yaml @@ -86,14 +86,14 @@ jobs: - name: Sign helm chart (CRDs) at registry.cloud.qdrant.io run: | - cosign sign --yes "${TAGS}@${DIGEST}" + cosign sign --new-bundle-format=false --use-signing-config=false --yes "${TAGS}@${DIGEST}" env: TAGS: registry.cloud.qdrant.io/qdrant-charts/qdrant-kubernetes-api:${{ steps.extract_build_info.outputs.tag }} DIGEST: ${{ steps.push-helm-chart-crds.outputs.digest }} - name: Sign helm chart (CRDs) at registry.cloud.qdrant.io in public repo run: | - cosign sign --yes "${TAGS}@${DIGEST}" + cosign sign --new-bundle-format=false --use-signing-config=false --yes "${TAGS}@${DIGEST}" env: TAGS: registry.cloud.qdrant.io/library/qdrant-kubernetes-api:${{ steps.extract_build_info.outputs.tag }} DIGEST: ${{ steps.push-helm-chart-crds-public.outputs.public_digest }} \ No newline at end of file