Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/build_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ jobs:
if: needs.check_env_variables.outputs.gcp-variables-set == 'true'
steps:
- name: Download compressed sources from artifacts
uses: actions/download-artifact@v5
uses: actions/download-artifact@v7
with:
name: source_zip
path: source/
Expand Down Expand Up @@ -231,13 +231,13 @@ jobs:
py_version: ["cp310-", "cp311-", "cp312-", "cp313-"]
steps:
- name: Download python source distribution from artifacts
uses: actions/download-artifact@v5
uses: actions/download-artifact@v7
with:
name: source
path: apache-beam-source
- name: Download Python SDK RC source distribution from artifacts
if: ${{ needs.build_source.outputs.is_rc == 1 }}
uses: actions/download-artifact@v5
uses: actions/download-artifact@v7
with:
name: source_rc${{ needs.build_source.outputs.rc_num }}
path: apache-beam-source-rc
Expand Down Expand Up @@ -314,7 +314,7 @@ jobs:
if: needs.check_env_variables.outputs.gcp-variables-set == 'true' && github.event_name != 'pull_request'
steps:
- name: Download wheels from artifacts
uses: actions/download-artifact@v5
uses: actions/download-artifact@v7
with:
pattern: wheelhouse-*
merge-multiple: true
Expand Down
Loading