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
8 changes: 4 additions & 4 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
name: Make SDist
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Build SDist
run: pipx run build --sdist
- uses: actions/upload-artifact@v4
Expand Down Expand Up @@ -54,7 +54,7 @@ jobs:
git
curl
- name: Check out repo
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Build wheels
if: runner.os != 'Windows'
run: |
Expand Down Expand Up @@ -93,7 +93,7 @@ jobs:
if: github.event_name == 'release' && github.event.action == 'published'
steps:
- name: Download wheels
uses: actions/download-artifact@v4
uses: actions/download-artifact@v5
with:
pattern: cibw-*
path: dist
Expand All @@ -114,7 +114,7 @@ jobs:
if: github.event_name == 'release' && github.event.action == 'published'
steps:
- name: Check out repo
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Publish to Crates.io
run: |
cargo login ${{ secrets.CARGO_REGISTRY_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr_title.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@ jobs:
name: Validate PR title
runs-on: ubuntu-latest
steps:
- uses: amannn/action-semantic-pull-request@v5
- uses: amannn/action-semantic-pull-request@v6
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4 changes: 2 additions & 2 deletions .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,10 @@ jobs:
git
curl
- name: Check out repo
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Set up Python
if: runner.os != 'Windows'
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Pip install the package
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
git
curl
- name: Check out repo
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Build
run: CC=clang cargo build --verbose
- name: Run tests
Expand Down