From e1a2b959e017e80d19eb4fe0f688cbd1e0988dda Mon Sep 17 00:00:00 2001 From: Tommy Date: Thu, 16 Mar 2023 19:43:13 -0400 Subject: [PATCH] Remove cosign version pin Signed-off-by: Tommy --- .github/workflows/build.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index ea455aa..0112221 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -37,8 +37,6 @@ jobs: - name: Install cosign if: github.event_name != 'pull_request' uses: sigstore/cosign-installer@main - with: - cosign-release: 'v1.13.1' - name: Set up Docker Buildx uses: docker/setup-buildx-action@v2 @@ -72,7 +70,7 @@ jobs: - name: Sign the published Docker image if: ${{ github.event_name != 'pull_request' }} - run: cosign sign ${TAGS} + run: cosign sign ${TAGS} -y env: COSIGN_EXPERIMENTAL: "true" - TAGS: ${{ steps.meta.outputs.tags }} \ No newline at end of file + TAGS: ${{ steps.meta.outputs.tags }}