Skip to content

Commit e6b0b1f

Browse files
chore(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 859f6b7 commit e6b0b1f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/docker-nginx.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
- name: Set up Docker Buildx
2828
uses: docker/setup-buildx-action@v3
2929
- name: Cache Docker layers
30-
uses: actions/cache@v4
30+
uses: actions/cache@v5
3131
with:
3232
path: /tmp/.buildx-cache
3333
key: nginx-buildx-${{ github.sha }}

.github/workflows/docker-php.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
uses: docker/setup-buildx-action@v3
3636
- name: Cache Docker layers
3737
id: docker-cache
38-
uses: actions/cache@v4
38+
uses: actions/cache@v5
3939
with:
4040
path: /tmp/.buildx-cache
4141
key: ${{ matrix.container }}-buildx-${{ github.sha }}
@@ -85,7 +85,7 @@ jobs:
8585
mv /tmp/.buildx-cache-new /tmp/.buildx-cache
8686
- name: Save Docker cache
8787
if: steps.docker-cache.outputs.cache-hit != 'true'
88-
uses: actions/cache@v4
88+
uses: actions/cache@v5
8989
with:
9090
path: /tmp/.buildx-cache
9191
key: ${{ matrix.container }}-buildx-${{ github.sha }}

0 commit comments

Comments
 (0)