From b65f8a61859b2f2be067a2ee9df5da741f63ce1d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 11 Aug 2025 10:58:25 -0700 Subject: [PATCH] Bump actions/download-artifact from 4 to 5 (#12735) Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 4 to 5. - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/download-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/e2e.yaml | 6 +++--- .github/workflows/install.yaml | 2 +- .github/workflows/integration.yaml | 4 ++-- .github/workflows/release.yml | 4 ++-- .github/workflows/trivy-scan.yml | 2 +- 5 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/e2e.yaml b/.github/workflows/e2e.yaml index fea84c772ff..41a3498541a 100644 --- a/.github/workflows/e2e.yaml +++ b/.github/workflows/e2e.yaml @@ -83,7 +83,7 @@ jobs: curl -LO "https://dl.k8s.io/release/$(curl -L -s https://dl.k8s.io/release/stable.txt)/bin/linux/amd64/kubectl" sudo install -o root -g root -m 0755 kubectl /usr/local/bin/kubectl - name: "Download k3s binary" - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v5 with: name: k3s-amd64 path: ./dist/artifacts @@ -181,7 +181,7 @@ jobs: - name: Checkout uses: actions/checkout@v4 - name: "Download K3s image" - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v5 with: name: k3s-${{ matrix.arch }} path: ./dist/artifacts @@ -195,7 +195,7 @@ jobs: IMAGE_TAG=$(docker image ls --format '{{.Repository}}:{{.Tag}}' | grep 'rancher/k3s') echo "K3S_IMAGE=$IMAGE_TAG" >> $GITHUB_ENV - name: Download Go Tests - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v5 with: name: docker-go-tests-${{ matrix.arch }} path: ./dist/artifacts diff --git a/.github/workflows/install.yaml b/.github/workflows/install.yaml index b145bcb9ad1..53435c901d8 100644 --- a/.github/workflows/install.yaml +++ b/.github/workflows/install.yaml @@ -52,7 +52,7 @@ jobs: - name: "Vagrant Plugin(s)" run: vagrant plugin install vagrant-k3s vagrant-reload vagrant-scp - name: "Download k3s binary" - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v5 with: name: k3s-amd64 path: tests/install/${{ matrix.vm }} diff --git a/.github/workflows/integration.yaml b/.github/workflows/integration.yaml index b73af03772d..0cf34e7962e 100644 --- a/.github/workflows/integration.yaml +++ b/.github/workflows/integration.yaml @@ -55,7 +55,7 @@ jobs: - name: Install Go uses: ./.github/actions/setup-go - name: "Download k3s binary" - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v5 with: name: k3s-amd64 path: ./dist/artifacts @@ -93,7 +93,7 @@ jobs: - name: Install Go uses: ./.github/actions/setup-go - name: Download k3s binary - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v5 with: name: k3s-windows path: dist/artifacts/ diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 49db1c068d2..abae6adbea7 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -77,7 +77,7 @@ jobs: tags: ${{ steps.tag_config.outputs.tag_spec }} - name: "Download K3s build" - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v5 with: pattern: k3s* path: ./dist/artifacts @@ -163,7 +163,7 @@ jobs: uses: actions/checkout@v4 - name: "Download Binaries and Airgap sha256sum" - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v5 with: pattern: k3s* path: ./dist/artifacts diff --git a/.github/workflows/trivy-scan.yml b/.github/workflows/trivy-scan.yml index 589f2a593f2..82041d131c6 100644 --- a/.github/workflows/trivy-scan.yml +++ b/.github/workflows/trivy-scan.yml @@ -85,7 +85,7 @@ jobs: steps: - name: Download Trivy Report artifact - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v5 if: needs.trivy_scan.result == 'success' with: name: trivy-report