Skip to content
Open
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
28 changes: 14 additions & 14 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- uses: actions/setup-python@v6
with:
python-version: "3.11"
Expand All @@ -26,7 +26,7 @@ jobs:
name: Lint Commit Messages
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
fetch-depth: 0
- uses: wagoid/commitlint-github-action@v6.2.1
Expand Down Expand Up @@ -59,7 +59,7 @@ jobs:
env:
POETRY_VIRTUALENVS_IN_PROJECT: "true"
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- name: Set up uv
id: setup-uv
uses: astral-sh/setup-uv@v8.2.0
Expand All @@ -69,7 +69,7 @@ jobs:
- name: Install poetry
run: uv tool install poetry
- name: Cache poetry virtualenv
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: .venv
key: poetry-${{ runner.os }}-${{ steps.setup-uv.outputs.python-version }}-${{ matrix.extension }}-${{ hashFiles('poetry.lock') }}
Expand All @@ -90,15 +90,15 @@ jobs:
env:
REQUIRE_EXTENSION: ${{ matrix.extension == 'use_extension' }}
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v6
uses: codecov/codecov-action@v7
with:
token: ${{ secrets.CODECOV_TOKEN }}

test32bit:
name: "Test on 32-bit Alpine Linux"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- name: Setup Alpine Linux v3.22 for x86
id: setup-alpine
continue-on-error: true
Expand Down Expand Up @@ -128,7 +128,7 @@ jobs:
name: "sdist install under PYTHONSAFEPATH"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- name: Set up Python
uses: actions/setup-python@v6
with:
Expand Down Expand Up @@ -159,7 +159,7 @@ jobs:
env:
POETRY_VIRTUALENVS_IN_PROJECT: "true"
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- name: Set up uv
id: setup-uv
uses: astral-sh/setup-uv@v8.2.0
Expand All @@ -169,7 +169,7 @@ jobs:
- name: Install poetry
run: uv tool install poetry
- name: Cache poetry virtualenv
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: .venv
key: poetry-${{ runner.os }}-${{ steps.setup-uv.outputs.python-version }}-benchmark-${{ hashFiles('poetry.lock') }}
Expand All @@ -189,7 +189,7 @@ jobs:
codspeed_benchmark:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- name: Set up uv
uses: astral-sh/setup-uv@v8.2.0
with:
Expand Down Expand Up @@ -226,7 +226,7 @@ jobs:
permissions:
contents: read
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
fetch-depth: 0
ref: ${{ github.ref }}
Expand Down Expand Up @@ -262,7 +262,7 @@ jobs:
newest_release_tag: ${{ steps.release.outputs.tag }}

steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
fetch-depth: 0
ref: ${{ github.event.pull_request.head.sha || github.ref_name }}
Expand Down Expand Up @@ -350,7 +350,7 @@ jobs:
musl: ""
pyver: cp314t
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
ref: ${{ needs.release.outputs.newest_release_tag }}
fetch-depth: 0
Expand Down Expand Up @@ -384,7 +384,7 @@ jobs:
echo "CIBW_BUILD=${{ matrix.pyver }}*" >> $GITHUB_ENV
fi
- name: Build wheels
uses: pypa/cibuildwheel@v3.4.1
uses: pypa/cibuildwheel@v4.1.0
env:
CIBW_SKIP: cp36-* cp37-* cp38-* cp39-* cp310-* pp* ${{ matrix.musl == 'musllinux' && '*manylinux*' || '*musllinux*' }}
REQUIRE_EXTENSION: 1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/issue-manager.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
issue-manager:
runs-on: ubuntu-latest
steps:
- uses: tiangolo/issue-manager@0.6.0
- uses: tiangolo/issue-manager@0.8.0
with:
token: ${{ secrets.GITHUB_TOKEN }}
config: >
Expand Down
Loading