From a577556eb978160b7d0933e0b66f7edca878e6ea Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 8 Sep 2025 02:05:09 +0000 Subject: [PATCH 1/2] chore(deps): bump the actions group with 3 updates Bumps the actions group with 3 updates: [actions/setup-python](https://github.com/actions/setup-python), [CodSpeedHQ/action](https://github.com/codspeedhq/action) and [codecov/codecov-action](https://github.com/codecov/codecov-action). Updates `actions/setup-python` from 5.6.0 to 6.0.0 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](https://github.com/actions/setup-python/compare/a26af69be951a213d495a4c3e4e4022e16d87065...e797f83bcb11b83ae66e0230d6156d7c80228e7c) Updates `CodSpeedHQ/action` from 3.8.1 to 4.0.0 - [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/76578c2a7ddd928664caa737f0e962e3085d4e7c...6eeb021fd0f305388292348b775d96d95253adf4) Updates `codecov/codecov-action` from 5.5.0 to 5.5.1 - [Release notes](https://github.com/codecov/codecov-action/releases) - [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/codecov/codecov-action/compare/fdcc8476540edceab3de004e990f80d881c6cc00...5a1091511ad55cbe89839c7260b706298ca349f7) --- updated-dependencies: - dependency-name: actions/setup-python dependency-version: 6.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: CodSpeedHQ/action dependency-version: 4.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: codecov/codecov-action dependency-version: 5.5.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: actions ... Signed-off-by: dependabot[bot] --- .github/workflows/benchmark.yml | 2 +- .github/workflows/codspeed.yml | 4 ++-- .github/workflows/test.yml | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/benchmark.yml b/.github/workflows/benchmark.yml index 7d5c053..54b1285 100644 --- a/.github/workflows/benchmark.yml +++ b/.github/workflows/benchmark.yml @@ -11,7 +11,7 @@ jobs: uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 #v5 - name: Set up Python - uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 #v5 + uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c #v5 with: python-version: '3.13' diff --git a/.github/workflows/codspeed.yml b/.github/workflows/codspeed.yml index b0b3478..1311160 100644 --- a/.github/workflows/codspeed.yml +++ b/.github/workflows/codspeed.yml @@ -27,7 +27,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 #v5 - - uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 #v5 + - uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c #v5 with: python-version: "3.13" @@ -35,7 +35,7 @@ jobs: run: pip install -e .[dev] - name: Run benchmarks - uses: CodSpeedHQ/action@76578c2a7ddd928664caa737f0e962e3085d4e7c #v3 + uses: CodSpeedHQ/action@6eeb021fd0f305388292348b775d96d95253adf4 #v3 with: token: ${{ secrets.CODSPEED_TOKEN }} run: pytest tests/ --codspeed diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 541a8ae..210d173 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -18,7 +18,7 @@ jobs: uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 #v5 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 #v5 + uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c #v5 with: python-version: ${{ matrix.python-version }} allow-prereleases: true @@ -33,7 +33,7 @@ jobs: coverage run --source=tests,cpp_linter_hooks -m pytest -vv coverage report coverage xml - - uses: codecov/codecov-action@fdcc8476540edceab3de004e990f80d881c6cc00 #v5 + - uses: codecov/codecov-action@5a1091511ad55cbe89839c7260b706298ca349f7 #v5 if: matrix.python-version == '3.13' with: token: ${{ secrets.CODECOV_TOKEN }} From 07763ee0933c9c0b67d4388921df784d460caaf8 Mon Sep 17 00:00:00 2001 From: Xianpeng Shen Date: Tue, 9 Sep 2025 03:05:59 +0300 Subject: [PATCH 2/2] Add instrumentation mode to CodSpeed action --- .github/workflows/codspeed.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/codspeed.yml b/.github/workflows/codspeed.yml index 1311160..fe71817 100644 --- a/.github/workflows/codspeed.yml +++ b/.github/workflows/codspeed.yml @@ -39,3 +39,4 @@ jobs: with: token: ${{ secrets.CODSPEED_TOKEN }} run: pytest tests/ --codspeed + mode: instrumentation