From 557cf62268080bcee03099f9ec55d6c04611e900 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 29 Jun 2026 19:52:44 +0000 Subject: [PATCH] Bump actions/cache from 5 to 6 Bumps [actions/cache](https://github.com/actions/cache) from 5 to 6. - [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/v5...v6) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/ci-phpstan_baseline.yml | 2 +- .github/workflows/phpstan.yml | 4 ++-- .github/workflows/pre-commit.yml | 4 ++-- .github/workflows/windows-ci.yml | 6 +++--- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ci-phpstan_baseline.yml b/.github/workflows/ci-phpstan_baseline.yml index ddb9306f4c5b1..b71f5ca238210 100644 --- a/.github/workflows/ci-phpstan_baseline.yml +++ b/.github/workflows/ci-phpstan_baseline.yml @@ -47,7 +47,7 @@ jobs: # Restore old cache - name: Restore phpstan cache id: cache - uses: actions/cache/restore@v5 + uses: actions/cache/restore@v6 with: path: ./.github/tmp key: phpstan-cache-${{ env.PHP_VERSION }}-${{ env.CACHE_KEY_PART }}-${{ diff --git a/.github/workflows/phpstan.yml b/.github/workflows/phpstan.yml index 541428c6b7d4a..bb3aaa25028e4 100644 --- a/.github/workflows/phpstan.yml +++ b/.github/workflows/phpstan.yml @@ -52,7 +52,7 @@ jobs: # Restore old cache - name: Restore phpstan cache id: cache - uses: actions/cache/restore@v5 + uses: actions/cache/restore@v6 with: path: ./.github/tmp key: phpstan-cache-${{ matrix.php-version }}-${{ env.CACHE_KEY_PART }}-${{ @@ -115,7 +115,7 @@ jobs: # Save cache - name: Save phpstan cache - uses: actions/cache/save@v5 + uses: actions/cache/save@v6 if: ${{ success() || ( ! cancelled() && steps.cache.outputs.cache-hit != 'true' ) }} with: path: ./.github/tmp diff --git a/.github/workflows/pre-commit.yml b/.github/workflows/pre-commit.yml index 6e8a8444de6a9..3f0699ee141e8 100644 --- a/.github/workflows/pre-commit.yml +++ b/.github/workflows/pre-commit.yml @@ -74,7 +74,7 @@ jobs: - run: python -m pip install pre-commit # Restore previous cache of precommit - - uses: actions/cache/restore@v5 + - uses: actions/cache/restore@v6 with: path: ~/.cache/pre-commit/ key: pre-commit-4|${{ env.pythonLocation }}|${{ hashFiles('.pre-commit-config.yaml') }} @@ -162,7 +162,7 @@ jobs: in: ${{ env.RAW_LOG }} # Save the precommit cache - - uses: actions/cache/save@v5 + - uses: actions/cache/save@v6 if: ${{ ! cancelled() }} with: path: ~/.cache/pre-commit/ diff --git a/.github/workflows/windows-ci.yml b/.github/workflows/windows-ci.yml index 4497c798639be..1c64558d66f9b 100644 --- a/.github/workflows/windows-ci.yml +++ b/.github/workflows/windows-ci.yml @@ -57,7 +57,7 @@ jobs: # steps: - name: Restore cache Ghostscript (also stores cache at end of workflow) - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: | C:\Program Files\gs @@ -79,7 +79,7 @@ jobs: # Restore cache - name: Restore cache id: cache - uses: actions/cache/restore@v5 + uses: actions/cache/restore@v6 env: HASH: ${{ hashFiles('htdocs/install/**', 'htdocs/filefunc.inc.php', 'htdocs/version.inc.php') }} KEY_ROOT: ${{ matrix.os }}-${{ env.ckey }}-${{ matrix.php_version }} @@ -212,7 +212,7 @@ jobs: # Save cache - name: Save cache - uses: actions/cache/save@v5 + uses: actions/cache/save@v6 if: ${{ ! cancelled() }} with: # See https://github.com/actions/cache/issues/1275#issuecomment-1925217178