Skip to content

Commit 7ae26bf

Browse files
build(deps): 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] <support@github.com>
1 parent 869ba6b commit 7ae26bf

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/4.0-nightly.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
5151

5252
- name: Cache composer dependencies
53-
uses: actions/cache@v4
53+
uses: actions/cache@v5
5454
with:
5555
path: ${{ steps.composer-cache.outputs.dir }}
5656
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
@@ -78,7 +78,7 @@ jobs:
7878
run: |
7979
echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT
8080
81-
- uses: actions/cache@v4
81+
- uses: actions/cache@v5
8282
name: Setup pnpm cache
8383
with:
8484
path: ${{ steps.pnpm-cache.outputs.STORE_PATH }}

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
3333

3434
- name: Cache composer dependencies
35-
uses: actions/cache@v4
35+
uses: actions/cache@v5
3636
with:
3737
path: ${{ steps.composer-cache.outputs.dir }}
3838
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
@@ -75,7 +75,7 @@ jobs:
7575
echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT
7676
7777
- name: Setup pnpm cache
78-
uses: actions/cache@v4
78+
uses: actions/cache@v5
7979
with:
8080
path: ${{ steps.pnpm-cache.outputs.STORE_PATH }}
8181
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}

.github/workflows/dev-nightly.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
4949

5050
- name: Cache composer dependencies
51-
uses: actions/cache@v4
51+
uses: actions/cache@v5
5252
with:
5353
path: ${{ steps.composer-cache.outputs.dir }}
5454
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
@@ -76,7 +76,7 @@ jobs:
7676
run: |
7777
echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT
7878
79-
- uses: actions/cache@v4
79+
- uses: actions/cache@v5
8080
name: Setup pnpm cache
8181
with:
8282
path: ${{ steps.pnpm-cache.outputs.STORE_PATH }}

0 commit comments

Comments
 (0)