Skip to content

Commit eb43622

Browse files
Bump actions/cache from 5 to 6 in the all-actions group
Bumps the all-actions group with 1 update: [actions/cache](https://github.com/actions/cache). Updates `actions/cache` from 5 to 6 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v5...v6) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent e391087 commit eb43622

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/interoperability.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
- uses: actions/checkout@v7
5151

5252
- name: Cache composer dependencies
53-
uses: actions/cache@v5
53+
uses: actions/cache@v6
5454
with:
5555
path: $(composer config cache-files-dir)
5656
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
@@ -69,7 +69,7 @@ jobs:
6969
7070
- name: Cache metadata
7171
id: cache-metadata
72-
uses: actions/cache@v5
72+
uses: actions/cache@v6
7373
with:
7474
path: /tmp/metadata
7575
key: ${{ runner.os }}-metadata-${{ env.date }}

.github/workflows/php.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ jobs:
7777
run: echo COMPOSER_CACHE="$(composer config cache-files-dir)" >> "$GITHUB_ENV"
7878

7979
- name: Cache composer dependencies
80-
uses: actions/cache@v5
80+
uses: actions/cache@v6
8181
with:
8282
path: ${{ env.COMPOSER_CACHE }}
8383
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}
@@ -140,7 +140,7 @@ jobs:
140140
run: echo COMPOSER_CACHE="$(composer config cache-files-dir)" >> "$env:GITHUB_ENV"
141141

142142
- name: Cache composer dependencies
143-
uses: actions/cache@v5
143+
uses: actions/cache@v6
144144
with:
145145
path: ${{ env.COMPOSER_CACHE }}
146146
key: ${{ runner.os }}-composer-${{ hashFiles('**\composer.json') }}
@@ -178,7 +178,7 @@ jobs:
178178
run: echo COMPOSER_CACHE="$(composer config cache-files-dir)" >> "$GITHUB_ENV"
179179

180180
- name: Cache composer dependencies
181-
uses: actions/cache@v5
181+
uses: actions/cache@v6
182182
with:
183183
path: ${{ env.COMPOSER_CACHE }}
184184
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}
@@ -232,7 +232,7 @@ jobs:
232232
run: echo COMPOSER_CACHE="$(composer config cache-files-dir)" >> "$GITHUB_ENV"
233233

234234
- name: Cache composer dependencies
235-
uses: actions/cache@v5
235+
uses: actions/cache@v6
236236
with:
237237
path: ${{ env.COMPOSER_CACHE }}
238238
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}

0 commit comments

Comments
 (0)