From 3e33a7de1229cab33464442e09d99bda99d554ec Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 14 Jun 2026 14:32:40 +0000 Subject: [PATCH] build(deps): bump the actions group with 2 updates Bumps the actions group with 2 updates: [CodSpeedHQ/action](https://github.com/codspeedhq/action) and [actions/setup-node](https://github.com/actions/setup-node). Updates `CodSpeedHQ/action` from 3 to 4 - [Release notes](https://github.com/codspeedhq/action/releases) - [Changelog](https://github.com/CodSpeedHQ/action/blob/main/CHANGELOG.md) - [Commits](https://github.com/codspeedhq/action/compare/v3...v4) Updates `actions/setup-node` from 4 to 6 - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](https://github.com/actions/setup-node/compare/v4...v6) --- updated-dependencies: - dependency-name: CodSpeedHQ/action dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/setup-node dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] --- .github/workflows/codspeed.yml | 6 +++--- .github/workflows/python-package.yml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/codspeed.yml b/.github/workflows/codspeed.yml index 1660c05..ae9a7bc 100644 --- a/.github/workflows/codspeed.yml +++ b/.github/workflows/codspeed.yml @@ -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 @@ -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 @@ -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 diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index f257e48..d92ece2 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -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"