From d32681d9df0c8f7f4e97a2f519e70678999f4885 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 15 Dec 2025 06:12:32 +0000 Subject: [PATCH] Bump actions/cache from 4 to 5 Bumps [actions/cache](https://github.com/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) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/php-cs-fixer.yml | 2 +- .github/workflows/phpmd.yml | 2 +- .github/workflows/phpstan.yml | 6 +++--- .github/workflows/phpunit.yml | 2 +- .github/workflows/rector.yml | 6 +++--- 5 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/php-cs-fixer.yml b/.github/workflows/php-cs-fixer.yml index 0ea4f6a..f15e298 100644 --- a/.github/workflows/php-cs-fixer.yml +++ b/.github/workflows/php-cs-fixer.yml @@ -21,7 +21,7 @@ jobs: run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT - name: Cache dependencies - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ${{ steps.composer-cache.outputs.dir }} key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} diff --git a/.github/workflows/phpmd.yml b/.github/workflows/phpmd.yml index 7892ab5..0f7f645 100644 --- a/.github/workflows/phpmd.yml +++ b/.github/workflows/phpmd.yml @@ -16,7 +16,7 @@ jobs: run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT - name: Cache dependencies - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ${{ steps.composer-cache.outputs.dir }} key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} diff --git a/.github/workflows/phpstan.yml b/.github/workflows/phpstan.yml index 54b20b4..a86a908 100644 --- a/.github/workflows/phpstan.yml +++ b/.github/workflows/phpstan.yml @@ -20,7 +20,7 @@ jobs: run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT - name: Cache dependencies - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ${{ steps.composer-cache.outputs.dir }} key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} @@ -30,7 +30,7 @@ jobs: run: composer install --prefer-dist --no-progress --ignore-platform-req=ext-* - name: Restore result cache - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 with: path: .phpstan.cache key: phpstan-result-cache-${{ github.run_id }} @@ -41,7 +41,7 @@ jobs: run: XDEBUG_MODE=off php vendor/bin/phpstan.phar analyze - name: Save result cache - uses: actions/cache/save@v4 + uses: actions/cache/save@v5 if: always() with: path: .phpstan.cache diff --git a/.github/workflows/phpunit.yml b/.github/workflows/phpunit.yml index d6161b9..1a15723 100644 --- a/.github/workflows/phpunit.yml +++ b/.github/workflows/phpunit.yml @@ -26,7 +26,7 @@ jobs: run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT - name: Cache dependencies - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ${{ steps.composer-cache.outputs.dir }} key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} diff --git a/.github/workflows/rector.yml b/.github/workflows/rector.yml index 595f673..877042f 100644 --- a/.github/workflows/rector.yml +++ b/.github/workflows/rector.yml @@ -21,7 +21,7 @@ jobs: run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT - name: Cache dependencies - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ${{ steps.composer-cache.outputs.dir }} key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} @@ -31,7 +31,7 @@ jobs: run: composer install --prefer-dist --no-progress --ignore-platform-req=ext-* - name: Restore result cache - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 with: path: .rector.result.cache key: rector-result-cache-${{ github.run_id }} @@ -42,7 +42,7 @@ jobs: run: php vendor/bin/rector process --config .rector.php --dry-run - name: Save result cache - uses: actions/cache/save@v4 + uses: actions/cache/save@v5 if: always() with: path: .rector.result.cache