Skip to content

Commit 65d6708

Browse files
chore: 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 c44799c commit 65d6708

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@ jobs:
213213
# todo Waiting for PHP CS Fixer to support PHP 8.4
214214
# -
215215
# name: PHP CS Fixer Cache
216-
# uses: actions/cache@v4
216+
# uses: actions/cache@v5
217217
# with:
218218
# path: api/.php-cs-fixer.cache
219219
# key: ${{ runner.OS }}-phpcsfixer-${{ github.sha }}
@@ -248,7 +248,7 @@ jobs:
248248
version: latest
249249
-
250250
name: Cache PNPM
251-
uses: actions/cache@v4
251+
uses: actions/cache@v5
252252
with:
253253
path: ${{ env.PNPM_HOME }}
254254
key: ${{ runner.os }}-pnpm-${{ github.run_id }}
@@ -266,7 +266,7 @@ jobs:
266266
# Lint HELM
267267
-
268268
name: Cache Helm Dependencies
269-
uses: actions/cache@v4
269+
uses: actions/cache@v5
270270
with:
271271
path: helm/api-platform/charts/
272272
key: ${{ runner.os }}-helm-dependencies-${{ github.run_id }}

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ jobs:
7979
gcloud container clusters get-credentials ${{ inputs.gke-cluster }} --zone ${{ inputs.gke-zone }}
8080
-
8181
name: Cache Helm Dependencies
82-
uses: actions/cache@v4
82+
uses: actions/cache@v5
8383
with:
8484
path: helm/api-platform/charts/
8585
key: ${{ runner.os }}-helm-dependencies-${{ github.run_id }}

.github/workflows/security.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262
run: docker pull europe-west1-docker.pkg.dev/${{ secrets.GKE_PROJECT }}/${{ secrets.GKE_PROJECT }}/${{ matrix.image }}:latest
6363
-
6464
name: Cache Trivy
65-
uses: actions/cache@v4
65+
uses: actions/cache@v5
6666
with:
6767
path: .trivy
6868
key: ${{ runner.os }}-trivy-${{ github.run_id }}

.github/workflows/upgrade-api-platform.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
3030
-
3131
name: Cache Dependencies
32-
uses: actions/cache@v4
32+
uses: actions/cache@v5
3333
with:
3434
path: ${{ steps.composer-cache.outputs.dir }}
3535
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}

0 commit comments

Comments
 (0)