Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
runs-on: ${{matrix.os}}
steps:
- name: Checkout repository
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
submodules: true
- name: Set up Python ${{matrix.python}}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
url: ${{steps.deploy.outputs.page_url}}
steps:
- name: Checkout repository
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
submodules: true
- name: Set up Python
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
submodules: true
- name: Set up Python
Expand All @@ -21,7 +21,7 @@ jobs:
pip install build
python -mbuild -n -s
- name: Upload sources
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: dist-sources
path: dist/*.tar.gz
Expand All @@ -40,7 +40,7 @@ jobs:
- { os: macos-15-intel, cibw_arch: x86_64 }
steps:
- name: Checkout repository
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
submodules: true
- name: Build wheels
Expand All @@ -51,7 +51,7 @@ jobs:
# FIXME: stop skipping when the tests stop crashing
CIBW_TEST_SKIP: "*-win_*"
- name: Upload wheels
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: dist-wheels-${{matrix.os}}-${{matrix.cibw_arch}}
path: wheelhouse/*.whl
Expand All @@ -62,7 +62,7 @@ jobs:
needs: [build-sdist, build-wheels]
steps:
- name: Download artifacts
uses: actions/download-artifact@v6
uses: actions/download-artifact@v7
with:
path: dist
pattern: dist-*
Expand Down
Loading