@@ -121,14 +121,14 @@ jobs:
121121
122122 - name : Download base Docker image (normal mode)
123123 if : github.event.inputs.reuse_base_wheels != 'true'
124- uses : actions/download-artifact@v4
124+ uses : actions/download-artifact@v6
125125 with :
126126 name : rocm-base-image
127127 path : artifacts/docker-image
128128
129129 - name : Download base Docker image (reuse_base_wheels mode - from previous run)
130130 if : github.event.inputs.reuse_base_wheels == 'true'
131- uses : actions/download-artifact@v4
131+ uses : actions/download-artifact@v6
132132 with :
133133 name : rocm-base-image
134134 path : artifacts/docker-image
@@ -141,14 +141,14 @@ jobs:
141141
142142 - name : Download base wheels (normal mode)
143143 if : github.event.inputs.reuse_base_wheels != 'true'
144- uses : actions/download-artifact@v4
144+ uses : actions/download-artifact@v6
145145 with :
146146 name : rocm-base-wheels
147147 path : artifacts/base-wheels
148148
149149 - name : Download base wheels (reuse_base_wheels mode - from previous run)
150150 if : github.event.inputs.reuse_base_wheels == 'true'
151- uses : actions/download-artifact@v4
151+ uses : actions/download-artifact@v6
152152 with :
153153 name : rocm-base-wheels
154154 path : artifacts/base-wheels
@@ -252,35 +252,35 @@ jobs:
252252
253253 - name : Download all artifacts (normal mode)
254254 if : github.event.inputs.reuse_base_wheels != 'true' && github.event.inputs.publish_only != 'true'
255- uses : actions/download-artifact@v4
255+ uses : actions/download-artifact@v6
256256 with :
257257 path : artifacts
258258
259259 - name : Download all artifacts (reuse_base_wheels mode - from previous run + current)
260260 if : github.event.inputs.reuse_base_wheels == 'true' && github.event.inputs.publish_only != '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 }}
265265 github-token : ${{ secrets.GITHUB_TOKEN }}
266266
267267 - name : Download vLLM wheel from current run (reuse_base_wheels mode)
268268 if : github.event.inputs.reuse_base_wheels == 'true' && github.event.inputs.publish_only != 'true'
269- uses : actions/download-artifact@v4
269+ uses : actions/download-artifact@v6
270270 with :
271271 name : vllm-wheel
272272 path : artifacts/vllm-wheel
273273
274274 - name : Download dependency wheels from current run (reuse_base_wheels mode)
275275 if : github.event.inputs.reuse_base_wheels == 'true' && github.event.inputs.publish_only != 'true'
276- uses : actions/download-artifact@v4
276+ uses : actions/download-artifact@v6
277277 with :
278278 name : dependency-wheels
279279 path : artifacts/dependency-wheels
280280
281281 - name : Download all artifacts (publish_only mode - from previous run only)
282282 if : github.event.inputs.publish_only == 'true'
283- uses : actions/download-artifact@v4
283+ uses : actions/download-artifact@v6
284284 with :
285285 path : artifacts
286286 run-id : ${{ github.event.inputs.previous_run_id }}
0 commit comments