From bb887f3a45c1b5013e4daf8253a0852de59cfdc2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 3 Sep 2024 22:41:21 +0000 Subject: [PATCH] Bump actions/download-artifact from 3 to 4.1.7 in /.github/workflows Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 3 to 4.1.7. - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v3...v4.1.7) --- updated-dependencies: - dependency-name: actions/download-artifact dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 41a88af..026476b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -77,10 +77,10 @@ jobs: if: "startsWith(github.ref, 'refs/tags/')" needs: [linux] steps: - - uses: actions/download-artifact@v3 + - uses: actions/download-artifact@v4.1.7 with: name: wheels-manylinux-arm - - uses: actions/download-artifact@v3 + - uses: actions/download-artifact@v4.1.7 with: name: wheels-manylinux-x86 - name: Publish to PyPI @@ -91,11 +91,11 @@ jobs: command: upload args: --skip-existing * - name: Download native artifacts ARM - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4.1.7 with: name: wheels-native-arm - name: Download native artifacts x86 - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4.1.7 with: name: wheels-native-x86 - name: Attach Artifacts to the release