Skip to content
Closed
Show file tree
Hide file tree
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 @@ -204,7 +204,7 @@ jobs:
if: needs.check_env_variables.outputs.gcp-variables-set == 'true'
steps:
- name: Download compressed sources from artifacts
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: source_zip
path: source/
Expand Down Expand Up @@ -237,13 +237,13 @@ jobs:
arch: aarch64
steps:
- name: Download python source distribution from artifacts
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
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@v3
uses: actions/download-artifact@v4
with:
name: source_rc${{ needs.build_source.outputs.rc_num }}
path: apache-beam-source-rc
Expand Down Expand Up @@ -320,7 +320,7 @@ jobs:
os : [ubuntu-latest, macos-latest, windows-latest]
steps:
- name: Download wheels from artifacts
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: wheelhouse-${{ matrix.os }}
path: wheelhouse/
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/python_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ jobs:
with:
go-version: '1.21'
- name: Download source from artifacts
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: python_sdk_source
path: apache-beam-source
Expand Down