From b2d36098e6de57ef7a351fa4b95529d87b543125 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 3 Sep 2024 22:09:03 +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-locks.yml | 2 +- .github/workflows/ci-wheels.yml | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci-locks.yml b/.github/workflows/ci-locks.yml index 80689f54..96e80997 100644 --- a/.github/workflows/ci-locks.yml +++ b/.github/workflows/ci-locks.yml @@ -107,7 +107,7 @@ jobs: uses: actions/checkout@v4 - name: "Download lock artifacts" - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4.1.7 with: name: lock-artifacts path: ${{ github.workspace }}/requirements/locks diff --git a/.github/workflows/ci-wheels.yml b/.github/workflows/ci-wheels.yml index 35da7609..a09c4e93 100644 --- a/.github/workflows/ci-wheels.yml +++ b/.github/workflows/ci-wheels.yml @@ -103,7 +103,7 @@ jobs: name: "Show artifacts" runs-on: ubuntu-latest steps: - - uses: actions/download-artifact@v3 + - uses: actions/download-artifact@v4.1.7 with: name: pypi-artifacts path: ${{ github.workspace }}/dist @@ -120,7 +120,7 @@ jobs: # upload to Test PyPI for every commit on main branch if: github.event_name == 'push' && github.event.ref == 'refs/heads/main' steps: - - uses: actions/download-artifact@v3 + - uses: actions/download-artifact@v4.1.7 with: name: pypi-artifacts path: ${{ github.workspace }}/dist @@ -141,7 +141,7 @@ jobs: # upload to PyPI for every tag starting with 'v' if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags/v') steps: - - uses: actions/download-artifact@v3 + - uses: actions/download-artifact@v4.1.7 with: name: pypi-artifacts path: ${{ github.workspace }}/dist