From 7bd54263487f571754f555d7d04da78e247bb8ca Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 2 Jul 2026 08:48:21 -0700 Subject: [PATCH] Bump the github-actions group with 3 updates (#1697) Bumps the github-actions group with 3 updates: [actions/checkout](https://github.com/actions/checkout), [rojopolis/spellcheck-github-actions](https://github.com/rojopolis/spellcheck-github-actions) and [hoverkraft-tech/compose-action](https://github.com/hoverkraft-tech/compose-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 `rojopolis/spellcheck-github-actions` from 0.60.0 to 0.62.0 - [Release notes](https://github.com/rojopolis/spellcheck-github-actions/releases) - [Changelog](https://github.com/rojopolis/spellcheck-github-actions/blob/master/CHANGELOG.md) - [Commits](https://github.com/rojopolis/spellcheck-github-actions/compare/0.60.0...0.62.0) Updates `hoverkraft-tech/compose-action` from 2.6.0 to 3.0.0 - [Release notes](https://github.com/hoverkraft-tech/compose-action/releases) - [Commits](https://github.com/hoverkraft-tech/compose-action/compare/v2.6.0...v3.0.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: rojopolis/spellcheck-github-actions dependency-version: 0.62.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions - dependency-name: hoverkraft-tech/compose-action dependency-version: 3.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/linters.yml | 12 ++++++------ .github/workflows/spellcheck.yml | 4 ++-- .github/workflows/tests.yml | 12 ++++++------ 3 files changed, 14 insertions(+), 14 deletions(-) diff --git a/.github/workflows/linters.yml b/.github/workflows/linters.yml index 9b8cde24..ad3103c1 100644 --- a/.github/workflows/linters.yml +++ b/.github/workflows/linters.yml @@ -24,7 +24,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Check file permissions run: test "$(find . -type f -not -path './.git/*' -executable)" = "./bin/create-command-test" @@ -47,7 +47,7 @@ jobs: tools: parallel-lint - name: Checkout repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Check source code for syntax errors run: composer exec -- parallel-lint bin/ examples/ src/ tests/ @@ -67,7 +67,7 @@ jobs: coverage: none - name: Checkout repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Validate Composer configuration run: composer validate --no-interaction --strict @@ -101,7 +101,7 @@ jobs: coverage: none - name: Checkout repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Check EditorConfig configuration run: test -f .editorconfig @@ -130,7 +130,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Check exported files run: | @@ -159,7 +159,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: fetch-depth: 0 diff --git a/.github/workflows/spellcheck.yml b/.github/workflows/spellcheck.yml index 89cda0eb..cfbf5f6a 100644 --- a/.github/workflows/spellcheck.yml +++ b/.github/workflows/spellcheck.yml @@ -11,9 +11,9 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Check Spelling - uses: rojopolis/spellcheck-github-actions@0.60.0 + uses: rojopolis/spellcheck-github-actions@0.62.0 with: config_path: .github/spellcheck-settings.yml task_name: Markdown diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 89e34d26..0eeea379 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -82,16 +82,16 @@ jobs: fi - name: Checkout repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Start Redis standalone image - uses: hoverkraft-tech/compose-action@v2.6.0 + uses: hoverkraft-tech/compose-action@v3.0.0 with: compose-file: .github/docker-compose.yml services: ${{ env.DOCKER_SERVICE }} - name: Start Redis unprotected image - uses: hoverkraft-tech/compose-action@v2.6.0 + uses: hoverkraft-tech/compose-action@v3.0.0 if: ${{ matrix.redis > '4.0' }} with: compose-file: .github/docker-compose.yml @@ -99,7 +99,7 @@ jobs: - name: Start Redis stack image id: stack_infra - uses: hoverkraft-tech/compose-action@v2.6.0 + uses: hoverkraft-tech/compose-action@v3.0.0 if: ${{ matrix.redis >= '7.2' && matrix.redis < '8.0' }} with: compose-file: .github/docker-compose.yml @@ -107,7 +107,7 @@ jobs: - name: Start Redis cluster image id: cluster_infra - uses: hoverkraft-tech/compose-action@v2.6.0 + uses: hoverkraft-tech/compose-action@v3.0.0 if: ${{ matrix.redis > '4.0' }} with: compose-file: .github/docker-compose.yml @@ -115,7 +115,7 @@ jobs: - name: Start Redis sentinels image id: sentinel_infra - uses: hoverkraft-tech/compose-action@v2.6.0 + uses: hoverkraft-tech/compose-action@v3.0.0 if: ${{ matrix.redis > '4.0' }} with: compose-file: .github/docker-compose.yml