From 0e44d06ddc91c76e93c68cde158cbfc74ae4eddb Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 29 Jun 2026 07:35:30 +0000 Subject: [PATCH] chore(ci): bump the github-actions group across 1 directory with 2 updates Bumps the github-actions group with 2 updates in the / directory: [actions/checkout](https://github.com/actions/checkout) and [actions/cache](https://github.com/actions/cache). Updates `actions/checkout` from 4 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/v4...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) --- 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 ... Signed-off-by: dependabot[bot] --- .github/workflows/_publish-code.yml | 4 ++-- .github/workflows/_publish-docs.yml | 4 ++-- .github/workflows/_smoke-test.yml | 4 ++-- .github/workflows/_static-analysis.yml | 6 +++--- .github/workflows/_test-cli.yml | 4 ++-- .github/workflows/_test-integrations.yml | 8 ++++---- .github/workflows/_test-regressions.yml | 4 ++-- .github/workflows/_test-units.yml | 8 ++++---- .github/workflows/_workflow_lint.yml | 2 +- 9 files changed, 22 insertions(+), 22 deletions(-) diff --git a/.github/workflows/_publish-code.yml b/.github/workflows/_publish-code.yml index 23ae423e..cf1da514 100644 --- a/.github/workflows/_publish-code.yml +++ b/.github/workflows/_publish-code.yml @@ -22,7 +22,7 @@ jobs: env: PYTHON_VERSION: "3.12" steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Set up Python ${{ env.PYTHON_VERSION }} uses: actions/setup-python@v6 @@ -30,7 +30,7 @@ jobs: python-version: ${{ env.PYTHON_VERSION }} - name: Cache dependencies - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ~/.cache/pip key: ${{ runner.os }}-build-${{ hashFiles('pyproject.toml') }} diff --git a/.github/workflows/_publish-docs.yml b/.github/workflows/_publish-docs.yml index 084f03e2..3379bc7a 100644 --- a/.github/workflows/_publish-docs.yml +++ b/.github/workflows/_publish-docs.yml @@ -15,7 +15,7 @@ jobs: matrix: python-version: ["3.12"] steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v6 @@ -23,7 +23,7 @@ jobs: python-version: ${{ matrix.python-version }} - name: Cache dependencies - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ~/.cache/pip key: ${{ runner.os }}-docs-${{ hashFiles('pyproject.toml') }} diff --git a/.github/workflows/_smoke-test.yml b/.github/workflows/_smoke-test.yml index 24fe7e1f..23183baa 100644 --- a/.github/workflows/_smoke-test.yml +++ b/.github/workflows/_smoke-test.yml @@ -25,7 +25,7 @@ jobs: - "3.14" runs-on: "ubuntu-22.04" steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: submodules: recursive @@ -35,7 +35,7 @@ jobs: python-version: ${{ matrix.python-version }} - name: Cache dependencies - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ~/.cache/pip key: ${{ runner.os }}-samples-${{ hashFiles('**/pyproject.toml') }} diff --git a/.github/workflows/_static-analysis.yml b/.github/workflows/_static-analysis.yml index 2131052b..f91fc1ca 100644 --- a/.github/workflows/_static-analysis.yml +++ b/.github/workflows/_static-analysis.yml @@ -14,7 +14,7 @@ jobs: matrix: python-version: ["3.12"] steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v6 @@ -22,7 +22,7 @@ jobs: python-version: ${{ matrix.python-version }} - name: Cache dependencies - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ~/.cache/pip key: ${{ runner.os }}-lint-${{ hashFiles('pyproject.toml') }} @@ -44,7 +44,7 @@ jobs: pip install -e '.[lint]' - name: Cache pre-commit - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ~/.cache/pre-commit key: ${{ runner.os }}-prec-${{ hashFiles('.pre-commit-config.yaml') }} diff --git a/.github/workflows/_test-cli.yml b/.github/workflows/_test-cli.yml index c9d501e4..699796f3 100644 --- a/.github/workflows/_test-cli.yml +++ b/.github/workflows/_test-cli.yml @@ -31,7 +31,7 @@ jobs: - "3.14" runs-on: ${{ matrix.os }} steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: submodules: recursive @@ -41,7 +41,7 @@ jobs: python-version: ${{ matrix.python-version }} - name: Cache dependencies - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ~/.cache/pip key: ${{ runner.os }}-cli-${{ hashFiles('**/pyproject.toml') }} diff --git a/.github/workflows/_test-integrations.yml b/.github/workflows/_test-integrations.yml index 3d1b8c19..b26d068a 100644 --- a/.github/workflows/_test-integrations.yml +++ b/.github/workflows/_test-integrations.yml @@ -24,7 +24,7 @@ jobs: - "3.14" runs-on: ${{ matrix.os }} steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: submodules: recursive @@ -34,7 +34,7 @@ jobs: python-version: ${{ matrix.python-version }} - name: Cache dependencies - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ~/.cache/pip key: ${{ runner.os }}-test-${{ hashFiles('pyproject.toml') }} @@ -80,7 +80,7 @@ jobs: - "3.10" runs-on: ${{ matrix.os }} steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: submodules: recursive @@ -90,7 +90,7 @@ jobs: python-version: ${{ matrix.python-version }} - name: Cache dependencies - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ~/.cache/pip key: ${{ runner.os }}-test-${{ hashFiles('pyproject.toml') }} diff --git a/.github/workflows/_test-regressions.yml b/.github/workflows/_test-regressions.yml index 7c10cf07..3b7eefd0 100644 --- a/.github/workflows/_test-regressions.yml +++ b/.github/workflows/_test-regressions.yml @@ -21,7 +21,7 @@ jobs: - "3.14" runs-on: ${{ matrix.os }} steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: submodules: recursive @@ -31,7 +31,7 @@ jobs: python-version: ${{ matrix.python-version }} - name: Cache dependencies - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ~/.cache/pip key: ${{ runner.os }}-test-${{ hashFiles('pyproject.toml') }} diff --git a/.github/workflows/_test-units.yml b/.github/workflows/_test-units.yml index 071051fc..a0c79eba 100644 --- a/.github/workflows/_test-units.yml +++ b/.github/workflows/_test-units.yml @@ -23,7 +23,7 @@ jobs: - "3.14" runs-on: ${{ matrix.os }} steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: submodules: recursive @@ -33,7 +33,7 @@ jobs: python-version: ${{ matrix.python-version }} - name: Cache dependencies - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ~/.cache/pip key: ${{ runner.os }}-test-${{ hashFiles('pyproject.toml') }} @@ -65,7 +65,7 @@ jobs: - "3.14" runs-on: ${{ matrix.os }} steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: submodules: recursive @@ -75,7 +75,7 @@ jobs: python-version: ${{ matrix.python-version }} - name: Cache dependencies - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ~/.cache/pip key: ${{ runner.os }}-test-${{ hashFiles('pyproject.toml') }} diff --git a/.github/workflows/_workflow_lint.yml b/.github/workflows/_workflow_lint.yml index 8eb21904..0e09112a 100644 --- a/.github/workflows/_workflow_lint.yml +++ b/.github/workflows/_workflow_lint.yml @@ -10,7 +10,7 @@ jobs: actionlint: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 - name: Download actionlint id: get_actionlint run: bash <(curl https://raw.githubusercontent.com/rhysd/actionlint/main/scripts/download-actionlint.bash)