From a1b4cfe2a29c0e32ed8730dfa41e29eb7f7f7c28 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 15 Dec 2023 11:41:32 +0000 Subject: [PATCH] Bump actions/download-artifact from 3 to 4 Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 3 to 4. - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/download-artifact dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/build_wheels.yml | 8 ++++---- .github/workflows/python_tests.yml | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build_wheels.yml b/.github/workflows/build_wheels.yml index 58d14c6fcd68..7ea60d0d84a2 100644 --- a/.github/workflows/build_wheels.yml +++ b/.github/workflows/build_wheels.yml @@ -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/ @@ -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 @@ -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/ diff --git a/.github/workflows/python_tests.yml b/.github/workflows/python_tests.yml index 483d4776aec3..1c8d5db8ff5c 100644 --- a/.github/workflows/python_tests.yml +++ b/.github/workflows/python_tests.yml @@ -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