Skip to content

Commit d12f0f8

Browse files
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](actions/download-artifact@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] <[email protected]>
1 parent 6806b7d commit d12f0f8

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

.github/workflows/build-rocm-wheel.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -127,14 +127,14 @@ jobs:
127127

128128
- name: Download base Docker image (normal mode)
129129
if: github.event.inputs.debug_mode != 'true'
130-
uses: actions/download-artifact@v4
130+
uses: actions/download-artifact@v6
131131
with:
132132
name: rocm-base-image
133133
path: artifacts/docker-image
134134

135135
- name: Download base Docker image (debug mode - from previous run)
136136
if: github.event.inputs.debug_mode == 'true'
137-
uses: actions/download-artifact@v4
137+
uses: actions/download-artifact@v6
138138
with:
139139
name: rocm-base-image
140140
path: artifacts/docker-image
@@ -230,35 +230,35 @@ jobs:
230230

231231
- name: Download all artifacts (normal mode)
232232
if: github.event.inputs.debug_mode != 'true' && github.event.inputs.skip_to_job4 != 'true'
233-
uses: actions/download-artifact@v4
233+
uses: actions/download-artifact@v6
234234
with:
235235
path: artifacts
236236

237237
- name: Download all artifacts (debug mode - from previous run + current)
238238
if: github.event.inputs.debug_mode == 'true' && github.event.inputs.skip_to_job4 != 'true'
239-
uses: actions/download-artifact@v4
239+
uses: actions/download-artifact@v6
240240
with:
241241
path: artifacts
242242
run-id: ${{ github.event.inputs.previous_run_id }}
243243
github-token: ${{ secrets.GITHUB_TOKEN }}
244244

245245
- name: Download vLLM wheel from current run (debug mode)
246246
if: github.event.inputs.debug_mode == 'true' && github.event.inputs.skip_to_job4 != 'true'
247-
uses: actions/download-artifact@v4
247+
uses: actions/download-artifact@v6
248248
with:
249249
name: vllm-wheel
250250
path: artifacts/vllm-wheel
251251

252252
- name: Download dependency wheels from current run (debug mode)
253253
if: github.event.inputs.debug_mode == 'true' && github.event.inputs.skip_to_job4 != 'true'
254-
uses: actions/download-artifact@v4
254+
uses: actions/download-artifact@v6
255255
with:
256256
name: dependency-wheels
257257
path: artifacts/dependency-wheels
258258

259259
- name: Download all artifacts (skip to job 4 mode - from previous run only)
260260
if: github.event.inputs.skip_to_job4 == 'true'
261-
uses: actions/download-artifact@v4
261+
uses: actions/download-artifact@v6
262262
with:
263263
path: artifacts
264264
run-id: ${{ github.event.inputs.previous_run_id }}

0 commit comments

Comments
 (0)