From ff5bf9c308003db68540e90c62aea02fad627e8c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 18 Dec 2023 10:41:31 +0100 Subject: [PATCH] chore(deps): bump actions/download-artifact from 3 to 4 (#144) 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] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Luka Peschke --- .github/workflows/release.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index bc97e0c..d654431 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -52,33 +52,33 @@ jobs: needs: [linux, macos] steps: - name: Download Linux 3.10 wheels - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: "wheels-linux-python-3.10" path: wheels-linux - name: Download Linux 3.11 wheels - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: "wheels-linux-python-3.11" path: wheels-linux - name: Download Linux 3.12 wheels - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: "wheels-linux-python-3.12" path: wheels-linux - name: Download MacOS 3.10 wheels - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: "wheels-macos-python-3.10" path: wheels-macos - name: Download MacOS 3.11 wheels - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: "wheels-macos-python-3.11" path: wheels-macos - name: Download MacOS 3.12 wheels - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: "wheels-macos-python-3.12" path: wheels-macos