Skip to content

Commit

Permalink
Upgrade versions of used github actions
Browse files Browse the repository at this point in the history
Also removed the line "fetch-depth: 0" as setuptools-scm is not used
  • Loading branch information
guysz-nvidia committed Nov 23, 2024
1 parent 1440055 commit e6a6371
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions .github/workflows/build-python-artifacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit e6a6371

Please sign in to comment.