@@ -127,13 +127,13 @@ jobs:
127127 run : mv $(ls | grep "apache-beam-\|apache_beam-") apache-beam-source
128128 - name : Upload source as artifact
129129 # Pinned to v3 because of https://github.com/actions/download-artifact/issues/249
130- uses : actions/upload-artifact@v3
130+ uses : actions/upload-artifact@v4
131131 with :
132132 name : source
133133 path : sdks/python/apache-beam-source
134134 - name : Upload compressed sources as artifacts
135135 # Pinned to v3 because of https://github.com/actions/download-artifact/issues/249
136- uses : actions/upload-artifact@v3
136+ uses : actions/upload-artifact@v4
137137 with :
138138 name : source_zip
139139 path : sdks/python/dist
@@ -172,14 +172,14 @@ jobs:
172172 - name : Upload RC source as artifact
173173 if : steps.is_rc.outputs.is_rc == 1
174174 # Pinned to v3 because of https://github.com/actions/download-artifact/issues/249
175- uses : actions/upload-artifact@v3
175+ uses : actions/upload-artifact@v4
176176 with :
177177 name : source_rc${{ steps.get_rc_version.outputs.RC_NUM }}
178178 path : sdks/python/apache-beam-source-rc
179179 - name : Upload compressed RC sources as artifacts
180180 if : steps.is_rc.outputs.is_rc == 1
181181 # Pinned to v3 because of https://github.com/actions/download-artifact/issues/249
182- uses : actions/upload-artifact@v3
182+ uses : actions/upload-artifact@v4
183183 with :
184184 name : source_zip_rc${{ steps.get_rc_version.outputs.RC_NUM }}
185185 path : sdks/python/dist
@@ -288,7 +288,7 @@ jobs:
288288 shell : bash
289289 - name : Upload wheels as artifacts
290290 # Pinned to v3 because of https://github.com/actions/download-artifact/issues/249
291- uses : actions/upload-artifact@v3
291+ uses : actions/upload-artifact@v4
292292 with :
293293 name : wheelhouse-${{ matrix.os_python.os }}${{ (matrix.arch == 'aarch64' && '-aarch64') || '' }}
294294 path : apache-beam-source/wheelhouse/
@@ -314,7 +314,7 @@ jobs:
314314 - name : Upload RC wheels as artifacts
315315 if : ${{ needs.build_source.outputs.is_rc == 1 }}
316316 # Pinned to v3 because of https://github.com/actions/download-artifact/issues/249
317- uses : actions/upload-artifact@v3
317+ uses : actions/upload-artifact@v4
318318 with :
319319 name : wheelhouse-rc${{ needs.build_source.outputs.rc_num }}-${{ matrix.os_python.os }}${{ (matrix.arch == 'aarch64' && '-aarch64') || '' }}
320320 path : apache-beam-source-rc/wheelhouse/
0 commit comments