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