Skip to content

Commit ec7a468

Browse files
Bump actions/cache from 4 to 5 (#1902)
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](actions/cache@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] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent e8bc627 commit ec7a468

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/build-windows-package.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ jobs:
6363
BUILD_DIR: ${{ steps.build-driver.outputs.build-dir }}
6464

6565
- name: "Cache build artifacts for subsequent builds"
66-
uses: actions/cache/save@v4
66+
uses: actions/cache/save@v5
6767
with:
6868
key: ${{ github.sha }}-${{ inputs.php }}-${{ inputs.ts }}-${{ inputs.arch }}
6969
enableCrossOsArchive: true
@@ -98,7 +98,7 @@ jobs:
9898

9999
- name: Restore cached build artifacts
100100
id: cache-build-artifacts
101-
uses: actions/cache/restore@v4
101+
uses: actions/cache/restore@v5
102102
with:
103103
fail-on-cache-miss: true
104104
key: ${{ github.sha }}-${{ inputs.php }}-${{ inputs.ts }}-${{ inputs.arch }}

.github/workflows/windows-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444

4545
- name: Cache build artifacts for subsequent builds
4646
id: cache-build-artifacts
47-
uses: actions/cache/save@v4
47+
uses: actions/cache/save@v5
4848
with:
4949
key: ${{ github.sha }}-${{ inputs.php }}-${{ inputs.ts }}-${{ inputs.arch }}
5050
path: |
@@ -81,7 +81,7 @@ jobs:
8181

8282
- name: Restore cached build artifacts
8383
id: cache-build-artifacts
84-
uses: actions/cache/restore@v4
84+
uses: actions/cache/restore@v5
8585
with:
8686
fail-on-cache-miss: true
8787
key: ${{ github.sha }}-${{ inputs.php }}-${{ inputs.ts }}-${{ inputs.arch }}

0 commit comments

Comments
 (0)