From 0300fee38bf74db95ccf81709a77a713ef02d0da Mon Sep 17 00:00:00 2001 From: Matthias Bertschy Date: Fri, 31 Jan 2025 16:38:01 +0100 Subject: [PATCH] bump actions/download-artifact@v4 Signed-off-by: Matthias Bertschy --- .github/workflows/b-binary-build-and-e2e-tests.yaml | 2 +- .github/workflows/c-create-release.yaml | 2 +- .github/workflows/d-publish-image.yaml | 3 +-- 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/b-binary-build-and-e2e-tests.yaml b/.github/workflows/b-binary-build-and-e2e-tests.yaml index ea41f464..fc279fa6 100644 --- a/.github/workflows/b-binary-build-and-e2e-tests.yaml +++ b/.github/workflows/b-binary-build-and-e2e-tests.yaml @@ -289,7 +289,7 @@ jobs: if: ${{ (needs.wf-preparation.outputs.is-secret-set == 'true') && (always() && (contains(needs.*.result, 'success') || contains(needs.*.result, 'skipped')) && !(contains(needs.*.result, 'failure')) && !(contains(needs.*.result, 'cancelled'))) }} runs-on: ubuntu-latest # This cannot change steps: - - uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a # ratchet:actions/download-artifact@v3.0.2 + - uses: actions/download-artifact@v4 id: download-artifact with: name: kubescape diff --git a/.github/workflows/c-create-release.yaml b/.github/workflows/c-create-release.yaml index 7e52ec2f..1166c518 100644 --- a/.github/workflows/c-create-release.yaml +++ b/.github/workflows/c-create-release.yaml @@ -27,7 +27,7 @@ jobs: permissions: contents: write steps: - - uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a # ratchet:actions/download-artifact@v3.0.2 + - uses: actions/download-artifact@v4 id: download-artifact with: path: . diff --git a/.github/workflows/d-publish-image.yaml b/.github/workflows/d-publish-image.yaml index 29aad7d5..c46aa976 100644 --- a/.github/workflows/d-publish-image.yaml +++ b/.github/workflows/d-publish-image.yaml @@ -71,7 +71,7 @@ jobs: QUAY_PASSWORD: ${{ secrets.QUAYIO_REGISTRY_PASSWORD }} QUAY_USERNAME: ${{ secrets.QUAYIO_REGISTRY_USERNAME }} run: docker login -u="${QUAY_USERNAME}" -p="${QUAY_PASSWORD}" quay.io - - uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a # ratchet:actions/download-artifact@v3.0.2 + - uses: actions/download-artifact@v4 id: download-artifact with: path: . @@ -106,4 +106,3 @@ jobs: # Verify the image echo "$COSIGN_PUBLIC_KEY" > cosign.pub cosign verify -key cosign.pub ${{ inputs.image_name }}:${{ inputs.image_tag }} -