From 796693431daf2561265d86fb8dc97658f9ed2ddd Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 15 Dec 2025 21:06:09 +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/build-ci-atlas.yml | 2 +- .github/workflows/build-ci.yml | 2 +- .github/workflows/coding-standards.yml | 2 +- .github/workflows/static-analysis.yml | 6 +++--- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build-ci-atlas.yml b/.github/workflows/build-ci-atlas.yml index 16ecfba19..58b05907c 100644 --- a/.github/workflows/build-ci-atlas.yml +++ b/.github/workflows/build-ci-atlas.yml @@ -89,7 +89,7 @@ jobs: run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT - name: "Cache Composer dependencies" - uses: "actions/cache@v4" + uses: "actions/cache@v5" with: path: ${{ steps.composer-cache.outputs.dir }} key: "${{ matrix.os }}-composer-${{ hashFiles('**/composer.json') }}" diff --git a/.github/workflows/build-ci.yml b/.github/workflows/build-ci.yml index a8fd63488..3bd66d839 100644 --- a/.github/workflows/build-ci.yml +++ b/.github/workflows/build-ci.yml @@ -119,7 +119,7 @@ jobs: run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT - name: "Cache Composer dependencies" - uses: "actions/cache@v4" + uses: "actions/cache@v5" with: path: ${{ steps.composer-cache.outputs.dir }} key: "${{ matrix.os }}-composer-${{ hashFiles('**/composer.json') }}" diff --git a/.github/workflows/coding-standards.yml b/.github/workflows/coding-standards.yml index 5bd92d3a7..0fc72c9d1 100644 --- a/.github/workflows/coding-standards.yml +++ b/.github/workflows/coding-standards.yml @@ -36,7 +36,7 @@ jobs: key: "extcache-v1" - name: "Cache extensions" - uses: "actions/cache@v4" + uses: "actions/cache@v5" with: path: ${{ steps.extcache.outputs.dir }} key: ${{ steps.extcache.outputs.key }} diff --git a/.github/workflows/static-analysis.yml b/.github/workflows/static-analysis.yml index c53851ae5..b107a199d 100644 --- a/.github/workflows/static-analysis.yml +++ b/.github/workflows/static-analysis.yml @@ -68,7 +68,7 @@ jobs: - name: Cache dependencies id: composer-cache - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ./vendor key: composer-${{ hashFiles('**/composer.lock') }} @@ -78,7 +78,7 @@ jobs: - name: Restore cache PHPStan results id: phpstan-cache-restore - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 with: path: .cache key: "phpstan-result-cache-${{ matrix.php }}-${{ github.run_id }}" @@ -106,7 +106,7 @@ jobs: - name: Save cache PHPStan results id: phpstan-cache-save if: always() - uses: actions/cache/save@v4 + uses: actions/cache/save@v5 with: path: .cache key: ${{ steps.phpstan-cache-restore.outputs.cache-primary-key }}