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
6 changes: 3 additions & 3 deletions .github/workflows/codspeed.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
run: uv run --no-sync --python 3.13 python -c "import nltk; nltk.download('punkt_tab', quiet=True); nltk.download('punkt', quiet=True)"

- name: Run CodSpeed benchmarks
uses: CodSpeedHQ/action@v3
uses: CodSpeedHQ/action@v4
with:
# --no-sync: run in the bench-only environment from the previous step
# without an implicit re-sync, which would otherwise pull the default
Expand Down Expand Up @@ -88,7 +88,7 @@ jobs:
uv pip install --python .venv-wt . pytest pytest-codspeed

- name: Run CodSpeed walltime benchmarks (CPython)
uses: CodSpeedHQ/action@v3
uses: CodSpeedHQ/action@v4
with:
mode: walltime
# `python -m pytest` puts the repo root on sys.path so the
Expand Down Expand Up @@ -117,7 +117,7 @@ jobs:
uv pip install --python .venv-pypy . pytest pytest-codspeed

- name: Run CodSpeed walltime benchmarks (PyPy)
uses: CodSpeedHQ/action@v3
uses: CodSpeedHQ/action@v4
with:
mode: walltime
run: .venv-pypy/bin/python -m pytest benchmarks/test_walltime_compare_codspeed.py --codspeed
2 changes: 1 addition & 1 deletion .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ jobs:
- name: Build wheel
run: uv build --wheel

- uses: actions/setup-node@v4
- uses: actions/setup-node@v6
with:
node-version: "22"

Expand Down
Loading