From 52373a65204702792c55cec943a3cbe6af158a34 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 6 Aug 2025 11:02:49 +0000 Subject: [PATCH] chore(deps): update actions/download-artifact action to v5 --- .github/workflows/release-docker.yml | 4 ++-- .github/workflows/release.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release-docker.yml b/.github/workflows/release-docker.yml index 3b6665bd..28f70b2f 100644 --- a/.github/workflows/release-docker.yml +++ b/.github/workflows/release-docker.yml @@ -77,7 +77,7 @@ jobs: uses: docker/setup-buildx-action@v3 - name: Download pre-built binary - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v5 with: name: ${{ matrix.binary-name }} path: /tmp/binary @@ -113,7 +113,7 @@ jobs: needs: [build-docker] steps: - name: Download digests - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v5 with: path: ${{ runner.temp }}/digests pattern: digests-* diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 5b312c23..a3e7f736 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -148,7 +148,7 @@ jobs: # Download everything to avoid spelling out the different # platforms here. - name: "📥 Download all artifacts" - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v5 - name: "📤 Upload artifacts for release" run: gh release upload "${GITHUB_REF/refs\/tags\//}" ./*-release-artifacts/* env: