Skip to content

Commit 1c856ef

Browse files
dependabot[bot]thorsten
authored andcommitted
chore(deps): bump actions/cache from 3 to 4
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]>
1 parent dd0dd1c commit 1c856ef

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/build-php.yml

Lines changed: 1 addition & 1 deletion
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@v3.3.1
35+
uses: actions/cache@v4
3636
with:
3737
path: ${{ steps.composer-cache.outputs.dir }}
3838
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}

.github/workflows/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@v3.3.1
51+
uses: actions/cache@v4
5252
with:
5353
path: ${{ steps.composer-cache.outputs.dir }}
5454
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
@@ -75,7 +75,7 @@ jobs:
7575
run: |
7676
echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT
7777
78-
- uses: actions/cache@v3
78+
- uses: actions/cache@v4
7979
name: Setup pnpm cache
8080
with:
8181
path: ${{ steps.pnpm-cache.outputs.STORE_PATH }}

0 commit comments

Comments
 (0)