From 3e843f0ce365dc9ae1ab43dacc6424c6586704de Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 3 Sep 2024 21:19:19 +0000 Subject: [PATCH] Bump actions/download-artifact from 2 to 4.1.7 in /.github/workflows Bumps [actions/download-artifact](https://github.com/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 ... Signed-off-by: dependabot[bot] --- .github/workflows/python-package.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index edab1b9b..e5ef4078 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -294,21 +294,21 @@ jobs: steps: - name: Download source if: matrix.os == 'ubuntu-18.04' - uses: actions/download-artifact@v2 + uses: actions/download-artifact@v4.1.7 with: name: source path: dist - name: Download manylinux artifact if: matrix.os == 'ubuntu-18.04' - uses: actions/download-artifact@v2 + uses: actions/download-artifact@v4.1.7 with: name: manylinux path: dist - name: Download non-Linux wheel if: matrix.os != 'ubuntu-18.04' - uses: actions/download-artifact@v2 + uses: actions/download-artifact@v4.1.7 with: name: "${{ matrix.os }}-${{ matrix.python-version }}-\ ${{ matrix.impl }}-${{ matrix.purity }}.whl"