Skip to content

Commit 0bc4957

Browse files
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](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] <[email protected]>
1 parent 21825ee commit 0bc4957

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/tests.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ jobs:
8282
8383
- name: 'Init composer dep cache'
8484
id: cache
85-
uses: actions/cache@v4
85+
uses: actions/cache@v5
8686
with:
8787
path: ${{ steps.composer-cache.outputs.dir }}
8888
key: "composer-${{ runner.os }}-${{ matrix.php-version }}-${{ steps.vars.outputs.phpunit-version }}-${{ hashFiles('composer.lock') }}"
@@ -96,14 +96,14 @@ jobs:
9696
9797
- name: 'Save composer dep cache'
9898
if: steps.cache.outputs.cache-hit != 'true' && steps.cache.outputs.cache-hit != true
99-
uses: actions/cache/save@v4
99+
uses: actions/cache/save@v5
100100
with:
101101
path: ${{ steps.composer-cache.outputs.dir }}
102102
key: "composer-${{ runner.os }}-${{ matrix.php-version }}-${{ steps.vars.outputs.phpunit-version }}-${{ hashFiles('composer.lock') }}"
103103

104104
- name: 'Restore consul ${{ env.CONSUL_VERSION }}'
105105
id: consul-cache
106-
uses: actions/cache/restore@v4
106+
uses: actions/cache/restore@v5
107107
with:
108108
path: '${{ runner.tool_cache }}/consul'
109109
key: 'consul-${{ env.CONSUL_VERSION }}'
@@ -127,7 +127,7 @@ jobs:
127127

128128
- name: 'Save consul ${{ env.CONSUL_VERSION }} cache'
129129
if: '! steps.consul-cache.outputs.cache-hit'
130-
uses: actions/cache/save@v4
130+
uses: actions/cache/save@v5
131131
with:
132132
path: '${{ runner.tool_cache }}/consul'
133133
key: 'consul-${{ env.CONSUL_VERSION }}'

0 commit comments

Comments
 (0)