From fd41b014e86893b6aa7b38c45136c25546eef230 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 22 Apr 2026 00:26:15 +0000 Subject: [PATCH] Bump the all-actions group with 3 updates Bumps the all-actions group with 3 updates: [actions/cache](https://github.com/actions/cache), [actions/setup-node](https://github.com/actions/setup-node) and [gsactions/commit-message-checker](https://github.com/gsactions/commit-message-checker). Updates `actions/cache` from 4 to 5 - [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/v4...v5) Updates `actions/setup-node` from 4 to 6 - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](https://github.com/actions/setup-node/compare/v4...v6) Updates `gsactions/commit-message-checker` from 1 to 2 - [Release notes](https://github.com/gsactions/commit-message-checker/releases) - [Commits](https://github.com/gsactions/commit-message-checker/compare/v1...v2) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions - dependency-name: actions/setup-node dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions - dependency-name: gsactions/commit-message-checker dependency-version: '2' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/linters.yml | 12 ++++++------ .github/workflows/pull-request.yml | 6 +++--- .github/workflows/tests.yml | 2 +- 3 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/linters.yml b/.github/workflows/linters.yml index 6558915c..8606d6b9 100644 --- a/.github/workflows/linters.yml +++ b/.github/workflows/linters.yml @@ -30,7 +30,7 @@ jobs: coverage: none - name: "Cache Composer dependencies" - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/.composer/cache/files key: composer-php8.4-${{ hashFiles('composer.json') }} @@ -56,7 +56,7 @@ jobs: coverage: none - name: "Cache Composer dependencies" - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/.composer/cache/files key: composer-php8.4-${{ hashFiles('composer.json') }} @@ -81,7 +81,7 @@ jobs: version: latest - name: "Setup Node" - uses: actions/setup-node@v4 + uses: actions/setup-node@v6 with: node-version: 22.x cache: 'pnpm' @@ -106,7 +106,7 @@ jobs: version: latest - name: "Setup Node" - uses: actions/setup-node@v4 + uses: actions/setup-node@v6 with: node-version: 22.x cache: 'pnpm' @@ -132,7 +132,7 @@ jobs: coverage: none - name: "Cache Composer dependencies" - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/.composer/cache/files key: composer-php8.4-${{ hashFiles('composer.json') }} @@ -157,7 +157,7 @@ jobs: version: latest - name: "Setup Node" - uses: actions/setup-node@v4 + uses: actions/setup-node@v6 with: node-version: 22.x cache: 'pnpm' diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index 49ddf4ed..9dbc5230 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -15,20 +15,20 @@ jobs: timeout-minutes: 5 steps: - name: "Check Commit Type" - uses: gsactions/commit-message-checker@v1 + uses: gsactions/commit-message-checker@v2 with: pattern: '^(\[!!!\] )?(\[(WIP|POC)\] )?\[(BUGFIX|DOCS|FEATURE|TASK|RELEASE|DEVBOX)\] [A-Z].+' flags: '' error: 'Subject must start with [BUGFIX], [FEATURE], [TASK], [DOCS], [RELEASE], or [DEVBOX] (optionally prefixed with [!!!] or [WIP]/[POC]), followed by a capital letter. See https://docs.typo3.org/m/typo3/guide-contributionworkflow/main/en-us/Appendix/CommitMessage.html' - name: "Check Subject Length" - uses: gsactions/commit-message-checker@v1 + uses: gsactions/commit-message-checker@v2 with: pattern: '^.{1,72}$' flags: '' error: 'Subject line exceeds 72 characters.' excludeDescription: 'true' - name: "Check No Trailing Period" - uses: gsactions/commit-message-checker@v1 + uses: gsactions/commit-message-checker@v2 with: pattern: '^[^.]*[^.]$' flags: '' diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index a658a109..7b4dbbc2 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -33,7 +33,7 @@ jobs: uses: actions/checkout@v6 - name: "Cache Composer dependencies" - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/.composer/cache/files key: dependencies-typo3-${{ matrix.typo3 }}-php-${{ matrix.php }}-composer-${{ hashFiles('composer.json') }}