@@ -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
@@ -238,21 +238,21 @@ jobs:
238238
239239 - name : Download all artifacts (normal mode)
240240 if : github.event.inputs.reuse_base_wheels != 'true' && github.event.inputs.publish_only != 'true'
241- uses : actions/download-artifact@v4
241+ uses : actions/download-artifact@v6
242242 with :
243243 path : artifacts
244244
245245 - name : Download all artifacts (reuse_base_wheels mode - from previous run + current)
246246 if : github.event.inputs.reuse_base_wheels == 'true' && github.event.inputs.publish_only != 'true'
247- uses : actions/download-artifact@v4
247+ uses : actions/download-artifact@v6
248248 with :
249249 path : artifacts
250250 run-id : ${{ github.event.inputs.previous_run_id }}
251251 github-token : ${{ secrets.GITHUB_TOKEN }}
252252
253253 - name : Download vLLM wheel from current run (reuse_base_wheels 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 name : vllm-wheel
258258 path : artifacts/vllm-wheel
@@ -261,7 +261,7 @@ jobs:
261261
262262 - name : Download all artifacts (publish_only mode - from previous run only)
263263 if : github.event.inputs.publish_only == 'true'
264- uses : actions/download-artifact@v4
264+ uses : actions/download-artifact@v6
265265 with :
266266 path : artifacts
267267 run-id : ${{ github.event.inputs.previous_run_id }}
0 commit comments