Skip to content

Commit 8c6d63c

Browse files
dependabot[bot]pierres
authored andcommitted
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 a6c4fef commit 8c6d63c

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

.github/workflows/outdated.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,13 @@ jobs:
1919
- name: Building Docker images
2020
run: just compose build
2121
- name: Maintain Composer cache
22-
uses: actions/cache@v4
22+
uses: actions/cache@v5
2323
with:
2424
path: api/.cache/composer
2525
key: composer-${{ hashFiles('api/composer.lock') }}
2626
restore-keys: composer-
2727
- name: Maintain pnpm cache
28-
uses: actions/cache@v4
28+
uses: actions/cache@v5
2929
with:
3030
path: app/.cache/node
3131
key: pnpm-${{ hashFiles('app/pnpm-lock.yaml') }}

.github/workflows/security.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,13 @@ jobs:
1919
- name: Building Docker images
2020
run: just compose build
2121
- name: Maintain Composer cache
22-
uses: actions/cache@v4
22+
uses: actions/cache@v5
2323
with:
2424
path: api/.cache/composer
2525
key: composer-${{ hashFiles('api/composer.lock') }}
2626
restore-keys: composer-
2727
- name: Maintain pnpm cache
28-
uses: actions/cache@v4
28+
uses: actions/cache@v5
2929
with:
3030
path: app/.cache/node
3131
key: pnpm-${{ hashFiles('app/pnpm-lock.yaml') }}

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,13 @@ jobs:
2626
- name: Building Docker images
2727
run: just compose build
2828
- name: Maintain Composer cache
29-
uses: actions/cache@v4
29+
uses: actions/cache@v5
3030
with:
3131
path: api/.cache/composer
3232
key: composer-${{ hashFiles('api/composer.lock') }}
3333
restore-keys: composer-
3434
- name: Maintain pnpm cache
35-
uses: actions/cache@v4
35+
uses: actions/cache@v5
3636
with:
3737
path: app/.cache/node
3838
key: pnpm-${{ hashFiles('app/pnpm-lock.yaml') }}

.github/workflows/update.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,13 @@ jobs:
2424
- name: Building Docker images
2525
run: just compose build
2626
- name: Maintain Composer cache
27-
uses: actions/cache@v4
27+
uses: actions/cache@v5
2828
with:
2929
path: api/.cache/composer
3030
key: composer-${{ hashFiles('api/composer.lock') }}
3131
restore-keys: composer-
3232
- name: Maintain pnpm cache
33-
uses: actions/cache@v4
33+
uses: actions/cache@v5
3434
with:
3535
path: app/.cache/node
3636
key: pnpm-${{ hashFiles('app/pnpm-lock.yaml') }}

0 commit comments

Comments
 (0)