diff --git a/.github/workflows/native_libs.yml b/.github/workflows/native_libs.yml index c6c9bba..ac8ee25 100644 --- a/.github/workflows/native_libs.yml +++ b/.github/workflows/native_libs.yml @@ -37,7 +37,7 @@ jobs: python setup.py bdist_wheel - name: Upload wheel artifact - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: windows-wheels-${{ matrix.python-version }} path: dist/*.whl @@ -68,7 +68,7 @@ jobs: python setup.py bdist_wheel - name: Upload wheel artifact - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: macos-x86_64-wheels-${{ matrix.python-version }} path: dist/*.whl @@ -100,7 +100,7 @@ jobs: python setup.py bdist_wheel - name: Upload wheel artifact - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: macos-arm64-wheels-${{ matrix.python-version }} path: dist/*.whl @@ -112,7 +112,7 @@ jobs: if: github.event_name == 'release' && github.event.action == 'published' steps: - name: Download all artifacts - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: path: ./artifacts