From 39978e45fcfee7311badfa43494a0abf5698bfbb Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 1 Jul 2026 23:06:21 +0000 Subject: [PATCH] chore(ci): bump the github-actions group with 5 updates Bumps the github-actions group with 5 updates: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `6` | `7` | | [actions/cache](https://github.com/actions/cache) | `5` | `6` | | [codecov/codecov-action](https://github.com/codecov/codecov-action) | `6` | `7` | | [pypa/cibuildwheel](https://github.com/pypa/cibuildwheel) | `3.4.1` | `4.1.0` | | [tiangolo/issue-manager](https://github.com/tiangolo/issue-manager) | `0.6.0` | `0.8.0` | Updates `actions/checkout` from 6 to 7 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v6...v7) Updates `actions/cache` from 5 to 6 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v5...v6) Updates `codecov/codecov-action` from 6 to 7 - [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/v6...v7) Updates `pypa/cibuildwheel` from 3.4.1 to 4.1.0 - [Release notes](https://github.com/pypa/cibuildwheel/releases) - [Changelog](https://github.com/pypa/cibuildwheel/blob/main/docs/changelog.md) - [Commits](https://github.com/pypa/cibuildwheel/compare/v3.4.1...v4.1.0) Updates `tiangolo/issue-manager` from 0.6.0 to 0.8.0 - [Release notes](https://github.com/tiangolo/issue-manager/releases) - [Changelog](https://github.com/tiangolo/issue-manager/blob/master/release-notes.md) - [Commits](https://github.com/tiangolo/issue-manager/compare/0.6.0...0.8.0) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/cache dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: codecov/codecov-action dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: pypa/cibuildwheel dependency-version: 4.1.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: tiangolo/issue-manager dependency-version: 0.8.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yml | 28 ++++++++++++++-------------- .github/workflows/issue-manager.yml | 2 +- 2 files changed, 15 insertions(+), 15 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c53bf3b..b4b5045 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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" @@ -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 @@ -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 @@ -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') }} @@ -90,7 +90,7 @@ 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 }} @@ -98,7 +98,7 @@ jobs: 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 @@ -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: @@ -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 @@ -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') }} @@ -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: @@ -226,7 +226,7 @@ jobs: permissions: contents: read steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: fetch-depth: 0 ref: ${{ github.ref }} @@ -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 }} @@ -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 @@ -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 diff --git a/.github/workflows/issue-manager.yml b/.github/workflows/issue-manager.yml index ba08e33..ff32fc1 100644 --- a/.github/workflows/issue-manager.yml +++ b/.github/workflows/issue-manager.yml @@ -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: >