From 241ee0a6b65a0a5bbfe73ed51e7d53d7411c22f7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 29 Jun 2026 03:10:45 +0000 Subject: [PATCH] ci(deps): bump the github-actions group across 1 directory with 3 updates Bumps the github-actions group with 3 updates in the / directory: [actions/checkout](https://github.com/actions/checkout), [actions/cache](https://github.com/actions/cache) and [codecov/codecov-action](https://github.com/codecov/codecov-action). 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 5 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/v5...v7) --- 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 ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yml | 18 +++++++++--------- .github/workflows/publish.yml | 4 ++-- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ba804bf..47758d3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,7 +19,7 @@ jobs: python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"] steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: submodules: recursive @@ -30,14 +30,14 @@ jobs: allow-prereleases: true - name: Cache pip - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ~/.cache/pip key: pip-${{ matrix.python-version }}-${{ hashFiles('poetry.lock') }} restore-keys: pip-${{ matrix.python-version }}- - name: Cache Poetry virtualenvs - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ~/.cache/pypoetry/virtualenvs key: poetry-${{ matrix.python-version }}-${{ hashFiles('poetry.lock') }} @@ -51,7 +51,7 @@ jobs: - name: Upload coverage to Codecov if: matrix.python-version == '3.14' - uses: codecov/codecov-action@v5 + uses: codecov/codecov-action@v7 with: files: coverage.xml token: ${{ secrets.CODECOV_TOKEN }} @@ -63,7 +63,7 @@ jobs: if: github.event_name == 'pull_request' || (github.event_name == 'push' && github.ref == 'refs/heads/main') steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: submodules: recursive @@ -74,14 +74,14 @@ jobs: allow-prereleases: true - name: Cache pip - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ~/.cache/pip key: pip-3.14-${{ hashFiles('poetry.lock') }} restore-keys: pip-3.14- - name: Cache Poetry virtualenvs - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ~/.cache/pypoetry/virtualenvs key: poetry-3.14-${{ hashFiles('poetry.lock') }} @@ -99,7 +99,7 @@ jobs: needs: test steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: submodules: recursive @@ -110,7 +110,7 @@ jobs: allow-prereleases: true - name: Cache pip - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ~/.cache/pip key: pip-3.14-wheel-${{ hashFiles('poetry.lock') }} diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index e71671e..9ed683a 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -10,7 +10,7 @@ jobs: name: Build Python package runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: submodules: recursive - uses: actions/setup-python@v6 @@ -54,7 +54,7 @@ jobs: packages: write id-token: write steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: submodules: recursive - uses: actions/download-artifact@v8