Skip to content

Commit 8a66967

Browse files
Bump actions/cache from 3 to 4 (#2711)
Bumps [actions/cache](https://github.com/actions/cache) from 3 to 4. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v3...v4) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 5c16d0e commit 8a66967

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/build-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ jobs:
6363
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
6464

6565
- name: "Cache Composer dependencies"
66-
uses: "actions/cache@v3"
66+
uses: "actions/cache@v4"
6767
with:
6868
path: ${{ steps.composer-cache.outputs.dir }}
6969
key: "${{ matrix.os }}-composer-${{ hashFiles('**/composer.json') }}"

.github/workflows/coding-standards.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
key: "extcache-v1"
3232

3333
- name: "Cache extensions"
34-
uses: "actions/cache@v3"
34+
uses: "actions/cache@v4"
3535
with:
3636
path: ${{ steps.extcache.outputs.dir }}
3737
key: ${{ steps.extcache.outputs.key }}
@@ -90,7 +90,7 @@ jobs:
9090

9191
- name: Cache dependencies
9292
id: composer-cache
93-
uses: actions/cache@v3
93+
uses: actions/cache@v4
9494
with:
9595
path: ./vendor
9696
key: composer-${{ hashFiles('**/composer.lock') }}
@@ -100,7 +100,7 @@ jobs:
100100

101101
- name: Restore cache PHPStan results
102102
id: phpstan-cache-restore
103-
uses: actions/cache/restore@v3
103+
uses: actions/cache/restore@v4
104104
with:
105105
path: .cache
106106
key: "phpstan-result-cache-${{ github.run_id }}"
@@ -113,7 +113,7 @@ jobs:
113113
- name: Save cache PHPStan results
114114
id: phpstan-cache-save
115115
if: always()
116-
uses: actions/cache/save@v3
116+
uses: actions/cache/save@v4
117117
with:
118118
path: .cache
119119
key: ${{ steps.phpstan-cache-restore.outputs.cache-primary-key }}

0 commit comments

Comments
 (0)