diff --git a/.github/workflows/build-python-artifacts.yml b/.github/workflows/build-python-artifacts.yml index 6ebd508..ad33e69 100644 --- a/.github/workflows/build-python-artifacts.yml +++ b/.github/workflows/build-python-artifacts.yml @@ -55,25 +55,24 @@ jobs: os: [ubuntu-latest] steps: - name: Check out repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: - fetch-depth: 0 # unshallow fetch for setuptools-scm ref: ${{ inputs.branchOrTag }} - name: Set up QEMU if: matrix.os == 'ubuntu-latest' - uses: docker/setup-qemu-action@v2 + uses: docker/setup-qemu-action@v3 with: platforms: arm64 - name: Build wheels - uses: pypa/cibuildwheel@v2.15.0 + uses: pypa/cibuildwheel@v2.21 with: output-dir: dist package-dir: python - name: Upload distributions - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: path: dist name: nvtx-artifacts