diff --git a/.github/workflows/build_wheels.yml b/.github/workflows/build_wheels.yml index 4c3c68a..d90c7cf 100644 --- a/.github/workflows/build_wheels.yml +++ b/.github/workflows/build_wheels.yml @@ -13,13 +13,13 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - os: [ubuntu-20.04, windows-2019, macos-10.15] + os: [ubuntu-latest, windows-latest, macos-15] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 # Used to host cibuildwheel - - uses: actions/setup-python@v2 + - uses: actions/setup-python@v3 - name: Install cibuildwheel run: python -m pip install cibuildwheel @@ -34,6 +34,7 @@ jobs: CIBW_MANYLINUX_X86_64_IMAGE: manylinux_2_24 GITHUB_BUILDING_WHEELS: 1 - - uses: actions/upload-artifact@v2 + - uses: actions/upload-artifact@v4 with: + name: cibw-wheels-${{ matrix.os }}-${{ strategy.job-index }} path: ./wheelhouse/*.whl