From 9339bfa18a43245db41c99a85d6a72241a87ff3a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 3 Sep 2024 22:06:30 +0000 Subject: [PATCH] Bump actions/download-artifact Bumps the github_actions group with 1 update in the /.github/workflows directory: [actions/download-artifact](https://github.com/actions/download-artifact). Updates `actions/download-artifact` from 2 to 4.1.7 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v2...v4.1.7) --- updated-dependencies: - dependency-name: actions/download-artifact dependency-type: direct:production dependency-group: github_actions ... Signed-off-by: dependabot[bot] --- .github/workflows/build.yml | 8 ++++---- .github/workflows/docs.yml | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index ead08b93c..ddcf568d6 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -75,19 +75,19 @@ jobs: needs: - 'python-build-package' steps: - - uses: actions/download-artifact@v2 + - uses: actions/download-artifact@v4.1.7 with: name: python-wheels-linux path: dist - - uses: actions/download-artifact@v2 + - uses: actions/download-artifact@v4.1.7 with: name: python-wheels-macos_x86_64 path: dist - - uses: actions/download-artifact@v2 + - uses: actions/download-artifact@v4.1.7 with: name: python-wheels-macos_arm64 path: dist - - uses: actions/download-artifact@v2 + - uses: actions/download-artifact@v4.1.7 with: name: python-wheels-windows path: dist diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index b7702d7a9..c82a7a46f 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -54,7 +54,7 @@ jobs: needs: - build-docs steps: - - uses: actions/download-artifact@v2 + - uses: actions/download-artifact@v4.1.7 with: name: docs path: docs_output