From 42630e7633b8ca597e14fce35475b410e815c5af Mon Sep 17 00:00:00 2001 From: Earle Lowe Date: Fri, 18 Oct 2024 08:34:41 -0700 Subject: [PATCH] Update to new download/upload action --- .github/workflows/build-arm64-wheels.yml | 2 +- .github/workflows/build-m1-wheel.yml | 2 +- .github/workflows/build-test.yml | 7 ++++--- 3 files changed, 6 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build-arm64-wheels.yml b/.github/workflows/build-arm64-wheels.yml index 78e65cd4..9ea69390 100644 --- a/.github/workflows/build-arm64-wheels.yml +++ b/.github/workflows/build-arm64-wheels.yml @@ -60,7 +60,7 @@ jobs: needs: build_wheels steps: - name: Fetch wheels from previous job - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: wheels path: target/wheels/ diff --git a/.github/workflows/build-m1-wheel.yml b/.github/workflows/build-m1-wheel.yml index a3e05e48..373773c7 100644 --- a/.github/workflows/build-m1-wheel.yml +++ b/.github/workflows/build-m1-wheel.yml @@ -132,7 +132,7 @@ jobs: python-version: "3.10" - name: Download artifacts - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: wheels path: ./target/wheels/ diff --git a/.github/workflows/build-test.yml b/.github/workflows/build-test.yml index e3bc55a5..ad75dd59 100644 --- a/.github/workflows/build-test.yml +++ b/.github/workflows/build-test.yml @@ -226,7 +226,7 @@ jobs: - name: Upload artifacts uses: actions/upload-artifact@v4 with: - name: wheels + name: wheels-${{ matrix.os }}-py-${{ matrix.python }} path: ./target/wheels/ upload: @@ -250,9 +250,10 @@ jobs: python-version: "3.10" - name: Download artifacts - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: - name: wheels + merge-multiple: true + pattern: wheels-* path: ./target/wheels/ - name: Check for incompatible wheels and bail if found