From 84c77ea460e974745c9a753e2ea518983a5f7767 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 2 Jun 2026 10:32:02 -0700 Subject: [PATCH] Bump the github-actions group with 5 updates (#1683) --- .github/workflows/linters.yml | 16 ++++++++-------- .github/workflows/release-drafter.yml | 2 +- .github/workflows/spellcheck.yml | 4 ++-- .github/workflows/tests.yml | 14 +++++++------- 4 files changed, 18 insertions(+), 18 deletions(-) diff --git a/.github/workflows/linters.yml b/.github/workflows/linters.yml index 72a72ac6..9b8cde24 100644 --- a/.github/workflows/linters.yml +++ b/.github/workflows/linters.yml @@ -24,7 +24,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v6 - 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@v3 + uses: actions/checkout@v6 - name: Check source code for syntax errors run: composer exec -- parallel-lint bin/ examples/ src/ tests/ @@ -67,13 +67,13 @@ jobs: coverage: none - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v6 - name: Validate Composer configuration run: composer validate --no-interaction --strict - name: Install dependencies - uses: ramsey/composer-install@v2 + uses: ramsey/composer-install@v4 with: dependency-versions: highest @@ -101,7 +101,7 @@ jobs: coverage: none - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v6 - name: Check EditorConfig configuration run: test -f .editorconfig @@ -110,7 +110,7 @@ jobs: uses: greut/eclint-action@v0 - name: Install dependencies - uses: ramsey/composer-install@v2 + uses: ramsey/composer-install@v4 with: dependency-versions: highest @@ -130,7 +130,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v6 - name: Check exported files run: | @@ -159,7 +159,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: fetch-depth: 0 diff --git a/.github/workflows/release-drafter.yml b/.github/workflows/release-drafter.yml index f66dd94e..c16798ae 100644 --- a/.github/workflows/release-drafter.yml +++ b/.github/workflows/release-drafter.yml @@ -27,7 +27,7 @@ jobs: steps: - - uses: release-drafter/release-drafter@v5 + - uses: release-drafter/release-drafter@v7 with: config-name: release-drafter-config.yml env: diff --git a/.github/workflows/spellcheck.yml b/.github/workflows/spellcheck.yml index e1528415..989149a5 100644 --- a/.github/workflows/spellcheck.yml +++ b/.github/workflows/spellcheck.yml @@ -6,9 +6,9 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v6 - name: Check Spelling - uses: rojopolis/spellcheck-github-actions@0.33.1 + uses: rojopolis/spellcheck-github-actions@0.60.0 with: config_path: .github/spellcheck-settings.yml task_name: Markdown diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 2e68612f..d1980285 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -78,16 +78,16 @@ jobs: fi - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v6 - name: Start Redis standalone image - uses: hoverkraft-tech/compose-action@v2.0.1 + uses: hoverkraft-tech/compose-action@v2.6.0 with: compose-file: .github/docker-compose.yml services: ${{ env.DOCKER_SERVICE }} - name: Start Redis unprotected image - uses: hoverkraft-tech/compose-action@v2.0.1 + uses: hoverkraft-tech/compose-action@v2.6.0 if: ${{ matrix.redis > '4.0' }} with: compose-file: .github/docker-compose.yml @@ -95,7 +95,7 @@ jobs: - name: Start Redis stack image id: stack_infra - uses: hoverkraft-tech/compose-action@v2.0.1 + uses: hoverkraft-tech/compose-action@v2.6.0 if: ${{ matrix.redis >= '7.2' && matrix.redis < '8.0' }} with: compose-file: .github/docker-compose.yml @@ -103,7 +103,7 @@ jobs: - name: Start Redis cluster image id: cluster_infra - uses: hoverkraft-tech/compose-action@v2.0.1 + uses: hoverkraft-tech/compose-action@v2.6.0 if: ${{ matrix.redis > '4.0' }} with: compose-file: .github/docker-compose.yml @@ -111,7 +111,7 @@ jobs: - name: Start Redis sentinels image id: sentinel_infra - uses: hoverkraft-tech/compose-action@v2.0.1 + uses: hoverkraft-tech/compose-action@v2.6.0 if: ${{ matrix.redis > '4.0' }} with: compose-file: .github/docker-compose.yml @@ -125,7 +125,7 @@ jobs: coverage: ${{ (matrix.php == '8.4' && matrix.redis == '8.0') && 'xdebug' || 'none' }} - name: Install Composer dependencies - uses: ramsey/composer-install@v2 + uses: ramsey/composer-install@v4 with: dependency-versions: highest composer-options: ${{ matrix.php == '8.0' && '--ignore-platform-reqs' || '' }}