This is an automated email from the ASF dual-hosted git repository.
derrickaw pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/beam.git
The following commit(s) were added to refs/heads/master by this push:
new 032cbe2d436 Bump actions/download-artifact from 7 to 8 (#38401)
032cbe2d436 is described below
commit 032cbe2d436dc23ea135a73234f8ac0eefde701c
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
AuthorDate: Thu May 7 09:11:00 2026 -0400
Bump actions/download-artifact from 7 to 8 (#38401)
Bumps
[actions/download-artifact](https://github.com/actions/download-artifact) from
7 to 8.
- [Release notes](https://github.com/actions/download-artifact/releases)
- [Commits](https://github.com/actions/download-artifact/compare/v7...v8)
---
updated-dependencies:
- dependency-name: actions/download-artifact
dependency-version: '8'
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot]
<49699333+dependabot[bot]@users.noreply.github.com>
---
.github/workflows/build_wheels.yml | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/.github/workflows/build_wheels.yml
b/.github/workflows/build_wheels.yml
index bdee24af7af..4db227385c7 100644
--- a/.github/workflows/build_wheels.yml
+++ b/.github/workflows/build_wheels.yml
@@ -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@v7
+ uses: actions/download-artifact@v8
with:
name: source_zip
path: source/
@@ -231,13 +231,13 @@ jobs:
py_version: ["cp310-", "cp311-", "cp312-", "cp313-", "cp314-"]
steps:
- name: Download python source distribution from artifacts
- uses: actions/download-artifact@v7
+ uses: actions/download-artifact@v8
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@v7
+ uses: actions/download-artifact@v8
with:
name: source_rc${{ needs.build_source.outputs.rc_num }}
path: apache-beam-source-rc
@@ -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@v7
+ uses: actions/download-artifact@v8
with:
pattern: wheelhouse-*
merge-multiple: true