From 43216e96b2c871737a7b5f064fe5c8c3f4cfbde3 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 4 Dec 2025 12:52:09 +0000 Subject: [PATCH] Bump actions/download-artifact from 4 to 6 Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 4 to 6. - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v4...v6) --- updated-dependencies: - dependency-name: actions/download-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/build-rocm-wheel.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/build-rocm-wheel.yml b/.github/workflows/build-rocm-wheel.yml index 9d1d62db0..4c1599292 100644 --- a/.github/workflows/build-rocm-wheel.yml +++ b/.github/workflows/build-rocm-wheel.yml @@ -121,14 +121,14 @@ jobs: - name: Download base Docker image (normal mode) if: github.event.inputs.reuse_base_wheels != 'true' - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v6 with: name: rocm-base-image path: artifacts/docker-image - name: Download base Docker image (reuse_base_wheels mode - from previous run) if: github.event.inputs.reuse_base_wheels == 'true' - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v6 with: name: rocm-base-image path: artifacts/docker-image @@ -141,14 +141,14 @@ jobs: - name: Download base wheels (normal mode) if: github.event.inputs.reuse_base_wheels != 'true' - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v6 with: name: rocm-base-wheels path: artifacts/base-wheels - name: Download base wheels (reuse_base_wheels mode - from previous run) if: github.event.inputs.reuse_base_wheels == 'true' - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v6 with: name: rocm-base-wheels path: artifacts/base-wheels @@ -238,13 +238,13 @@ jobs: - name: Download all artifacts (normal mode) if: github.event.inputs.reuse_base_wheels != 'true' && github.event.inputs.publish_only != 'true' - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v6 with: path: artifacts - name: Download all artifacts (reuse_base_wheels mode - from previous run + current) if: github.event.inputs.reuse_base_wheels == 'true' && github.event.inputs.publish_only != 'true' - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v6 with: path: artifacts run-id: ${{ github.event.inputs.previous_run_id }} @@ -252,7 +252,7 @@ jobs: - name: Download vLLM wheel from current run (reuse_base_wheels mode) if: github.event.inputs.reuse_base_wheels == 'true' && github.event.inputs.publish_only != 'true' - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v6 with: name: vllm-wheel path: artifacts/vllm-wheel @@ -261,7 +261,7 @@ jobs: - name: Download all artifacts (publish_only mode - from previous run only) if: github.event.inputs.publish_only == 'true' - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v6 with: path: artifacts run-id: ${{ github.event.inputs.previous_run_id }}