From 8b7c25324a018008e0e5bb71ff6b52491e980ec9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 22 Dec 2023 18:18:44 +0000 Subject: [PATCH] Bump actions/upload-artifact from 3 to 4 (#748) * Bump actions/upload-artifact from 3 to 4 Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 3 to 4. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] * Create unique upload links for wheels * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Use a pattern instead of a name * Use pattern with wheelhouse instead of name --------- Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Wen Kokke Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> --- .github/workflows/build-vehicle-python.yml | 4 ++-- .github/workflows/ci.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build-vehicle-python.yml b/.github/workflows/build-vehicle-python.yml index 4a525842c..809e749ec 100644 --- a/.github/workflows/build-vehicle-python.yml +++ b/.github/workflows/build-vehicle-python.yml @@ -69,7 +69,7 @@ jobs: MACOSX_DEPLOYMENT_TARGET: "10.10" - name: Upload wheels - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: - name: wheelhouse + name: "wheelhouse-${{ matrix.os.plat }}-${{ matrix.os.arch }}" path: ./vehicle-python/wheelhouse/*.whl diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8a40955ac..289d39427 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -65,8 +65,8 @@ jobs: - name: Download wheelhouse uses: actions/download-artifact@v4 with: - name: wheelhouse - path: wheelhouse + pattern: "wheelhouse-*-*" + path: "wheelhouse" - name: Publish to GitHub Releases uses: softprops/action-gh-release@v1