diff --git a/.github/workflows/build-wheel-linux.yml b/.github/workflows/build-wheel-linux.yml index b63f5e5..aac752d 100644 --- a/.github/workflows/build-wheel-linux.yml +++ b/.github/workflows/build-wheel-linux.yml @@ -51,7 +51,7 @@ jobs: ################################################################ - run: ./scripts/wheel-linux.sh 3.8 - - uses: actions/upload-artifact@v2 + - uses: actions/upload-artifact@v4 name: Upload wheel 3.8 with: name: wheel-manylinux2014-3.8 @@ -59,7 +59,7 @@ jobs: # ################################################################ - run: ./scripts/wheel-linux.sh 3.9 - - uses: actions/upload-artifact@v2 + - uses: actions/upload-artifact@v4 name: Upload wheel 3.9 with: name: wheel-manylinux2014-3.9 @@ -67,7 +67,7 @@ jobs: # ################################################################ - run: ./scripts/wheel-linux.sh 3.10 - - uses: actions/upload-artifact@v2 + - uses: actions/upload-artifact@v4 name: Upload wheel 3.10 with: name: wheel-manylinux2014-3.10 @@ -75,7 +75,7 @@ jobs: # ################################################################ - run: ./scripts/wheel-linux.sh 3.11 - - uses: actions/upload-artifact@v2 + - uses: actions/upload-artifact@v4 name: Upload wheel 3.11 with: name: wheel-manylinux2014-3.11 @@ -83,7 +83,7 @@ jobs: # ################################################################ - run: ./scripts/wheel-linux.sh 3.12 - - uses: actions/upload-artifact@v2 + - uses: actions/upload-artifact@v4 name: Upload wheel 3.12 with: name: wheel-manylinux2014-3.12 diff --git a/.github/workflows/build-wheel-macos.yml b/.github/workflows/build-wheel-macos.yml index b1a1713..388d4d7 100644 --- a/.github/workflows/build-wheel-macos.yml +++ b/.github/workflows/build-wheel-macos.yml @@ -56,7 +56,7 @@ jobs: - run: ./scripts/wheel-macos.sh "3.9" - run: ls -l wheelhouse - - uses: actions/upload-artifact@v2 + - uses: actions/upload-artifact@v4 name: Upload wheel 3.9 ${{ matrix.arch_type }} with: name: wheel-macos-${{ matrix.arch_type }}-3.9 @@ -65,7 +65,7 @@ jobs: - run: ./scripts/wheel-macos.sh "3.10" - run: ls -l wheelhouse - - uses: actions/upload-artifact@v2 + - uses: actions/upload-artifact@v4 name: Upload wheel 3.10 ${{ matrix.arch_type }} with: name: wheel-macos-${{ matrix.arch_type }}-3.10 @@ -74,7 +74,7 @@ jobs: - run: ./scripts/wheel-macos.sh "3.11" - run: ls -l wheelhouse - - uses: actions/upload-artifact@v2 + - uses: actions/upload-artifact@v4 name: Upload wheel 3.11 ${{ matrix.arch_type }} with: name: wheel-macos-${{ matrix.arch_type }}-3.11 @@ -83,7 +83,7 @@ jobs: - run: ./scripts/wheel-macos.sh "3.12" - run: ls -l wheelhouse - - uses: actions/upload-artifact@v2 + - uses: actions/upload-artifact@v4 name: Upload wheel 3.12 ${{ matrix.arch_type }} with: name: wheel-macos-${{ matrix.arch_type }}-3.12