Skip to content

Commit d7c860c

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 98b8c5b commit d7c860c

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/assets_artifact_build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
run: |
3838
echo "::set-output name=dir::$(composer config cache-files-dir)"
3939
40-
- uses: actions/cache@v4
40+
- uses: actions/cache@v5
4141
with:
4242
path: ${{ steps.composer-cache.outputs.dir }}
4343
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
@@ -51,7 +51,7 @@ jobs:
5151
id: yarn-cache-dir-path
5252
run: echo "::set-output name=dir::$(yarn cache dir)"
5353

54-
- uses: actions/cache@v4
54+
- uses: actions/cache@v5
5555
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
5656
with:
5757
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}

.github/workflows/static_analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
run: |
3535
echo "::set-output name=dir::$(composer config cache-files-dir)"
3636
37-
- uses: actions/cache@v4
37+
- uses: actions/cache@v5
3838
with:
3939
path: ${{ steps.composer-cache.outputs.dir }}
4040
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ jobs:
8181
id: composer-cache
8282
run: |
8383
echo "::set-output name=dir::$(composer config cache-files-dir)"
84-
- uses: actions/cache@v4
84+
- uses: actions/cache@v5
8585
with:
8686
path: ${{ steps.composer-cache.outputs.dir }}
8787
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
@@ -92,7 +92,7 @@ jobs:
9292
id: yarn-cache-dir-path
9393
run: echo "::set-output name=dir::$(yarn cache dir)"
9494

95-
- uses: actions/cache@v4
95+
- uses: actions/cache@v5
9696
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
9797
with:
9898
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}

0 commit comments

Comments
 (0)