From e54251fb8825af628f27d4b0266c33b341afd519 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 15 Dec 2025 14:06:04 +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-windows-package.yml | 4 ++-- .github/workflows/windows-tests.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build-windows-package.yml b/.github/workflows/build-windows-package.yml index d9ef4b82f..59be13168 100644 --- a/.github/workflows/build-windows-package.yml +++ b/.github/workflows/build-windows-package.yml @@ -63,7 +63,7 @@ jobs: BUILD_DIR: ${{ steps.build-driver.outputs.build-dir }} - name: "Cache build artifacts for subsequent builds" - uses: actions/cache/save@v4 + uses: actions/cache/save@v5 with: key: ${{ github.sha }}-${{ inputs.php }}-${{ inputs.ts }}-${{ inputs.arch }} enableCrossOsArchive: true @@ -98,7 +98,7 @@ jobs: - name: Restore cached build artifacts id: cache-build-artifacts - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 with: fail-on-cache-miss: true key: ${{ github.sha }}-${{ inputs.php }}-${{ inputs.ts }}-${{ inputs.arch }} diff --git a/.github/workflows/windows-tests.yml b/.github/workflows/windows-tests.yml index 15262f24b..4d0824322 100644 --- a/.github/workflows/windows-tests.yml +++ b/.github/workflows/windows-tests.yml @@ -44,7 +44,7 @@ jobs: - name: Cache build artifacts for subsequent builds id: cache-build-artifacts - uses: actions/cache/save@v4 + uses: actions/cache/save@v5 with: key: ${{ github.sha }}-${{ inputs.php }}-${{ inputs.ts }}-${{ inputs.arch }} path: | @@ -81,7 +81,7 @@ jobs: - name: Restore cached build artifacts id: cache-build-artifacts - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 with: fail-on-cache-miss: true key: ${{ github.sha }}-${{ inputs.php }}-${{ inputs.ts }}-${{ inputs.arch }}