Skip to content

Commit 73bc6f4

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

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.github/workflows/build-ci-atlas.yml

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

9191
- name: "Cache Composer dependencies"
92-
uses: "actions/cache@v4"
92+
uses: "actions/cache@v5"
9393
with:
9494
path: ${{ steps.composer-cache.outputs.dir }}
9595
key: "${{ matrix.os }}-composer-${{ hashFiles('**/composer.json') }}"

.github/workflows/build-ci.yml

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

121121
- name: "Cache Composer dependencies"
122-
uses: "actions/cache@v4"
122+
uses: "actions/cache@v5"
123123
with:
124124
path: ${{ steps.composer-cache.outputs.dir }}
125125
key: "${{ matrix.os }}-composer-${{ hashFiles('**/composer.json') }}"

.github/workflows/coding-standards.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
key: "extcache-v1"
3737

3838
- name: "Cache extensions"
39-
uses: "actions/cache@v4"
39+
uses: "actions/cache@v5"
4040
with:
4141
path: ${{ steps.extcache.outputs.dir }}
4242
key: ${{ steps.extcache.outputs.key }}

.github/workflows/static-analysis.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ jobs:
6868

6969
- name: Cache dependencies
7070
id: composer-cache
71-
uses: actions/cache@v4
71+
uses: actions/cache@v5
7272
with:
7373
path: ./vendor
7474
key: composer-${{ hashFiles('**/composer.lock') }}
@@ -78,7 +78,7 @@ jobs:
7878

7979
- name: Restore cache PHPStan results
8080
id: phpstan-cache-restore
81-
uses: actions/cache/restore@v4
81+
uses: actions/cache/restore@v5
8282
with:
8383
path: .cache
8484
key: "phpstan-result-cache-${{ matrix.php }}-${{ github.run_id }}"
@@ -106,7 +106,7 @@ jobs:
106106
- name: Save cache PHPStan results
107107
id: phpstan-cache-save
108108
if: always()
109-
uses: actions/cache/save@v4
109+
uses: actions/cache/save@v5
110110
with:
111111
path: .cache
112112
key: ${{ steps.phpstan-cache-restore.outputs.cache-primary-key }}

0 commit comments

Comments
 (0)