From c72fe878c600c25edaccabc80c5ba351aac167d5 Mon Sep 17 00:00:00 2001 From: Sveinung Rundhovde Date: Tue, 10 Sep 2024 12:27:18 +0200 Subject: [PATCH] Migrate to v4 for upload/dowlnoad artifact --- .github/workflows/wheels.yaml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/wheels.yaml b/.github/workflows/wheels.yaml index 97a80af9..abeb0608 100644 --- a/.github/workflows/wheels.yaml +++ b/.github/workflows/wheels.yaml @@ -53,8 +53,9 @@ jobs: run: | python -m cibuildwheel --output-dir wheelhouse python/ - - uses: actions/upload-artifact@v2 + - uses: actions/upload-artifact@v4 with: + name: wheel-${{ matrix.os }}-${{ matrix.arch }} path: ./wheelhouse/*.whl publish: @@ -65,7 +66,7 @@ jobs: steps: - uses: actions/checkout@v2 - - uses: actions/download-artifact@v2 + - uses: actions/download-artifact@v4 - name: Publish wheels to PyPI