Skip to content

Commit ea29b03

Browse files
Bump the all-actions group with 3 updates
Bumps the all-actions group with 3 updates: [actions/cache](https://github.com/actions/cache), [actions/upload-artifact](https://github.com/actions/upload-artifact) and [actions/download-artifact](https://github.com/actions/download-artifact). Updates `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) Updates `actions/upload-artifact` from 5 to 6 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v5...v6) Updates `actions/download-artifact` from 6 to 7 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v6...v7) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions - dependency-name: actions/upload-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions - dependency-name: actions/download-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent faf0539 commit ea29b03

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/php.yml

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

7777
- name: Cache composer dependencies
78-
uses: actions/cache@v4
78+
uses: actions/cache@v5
7979
with:
8080
path: $COMPOSER_CACHE
8181
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
@@ -94,7 +94,7 @@ jobs:
9494

9595
- name: Save coverage data
9696
if: ${{ matrix.php-versions == '8.4' }}
97-
uses: actions/upload-artifact@v5
97+
uses: actions/upload-artifact@v6
9898
with:
9999
name: coverage-data
100100
path: ${{ github.workspace }}/build
@@ -137,7 +137,7 @@ jobs:
137137
run: echo COMPOSER_CACHE="$(composer config cache-files-dir)" >> "$env:GITHUB_ENV"
138138

139139
- name: Cache composer dependencies
140-
uses: actions/cache@v4
140+
uses: actions/cache@v5
141141
with:
142142
path: $COMPOSER_CACHE
143143
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
@@ -173,7 +173,7 @@ jobs:
173173
run: echo COMPOSER_CACHE="$(composer config cache-files-dir)" >> "$GITHUB_ENV"
174174

175175
- name: Cache composer dependencies
176-
uses: actions/cache@v4
176+
uses: actions/cache@v5
177177
with:
178178
path: $COMPOSER_CACHE
179179
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
@@ -225,7 +225,7 @@ jobs:
225225
run: echo COMPOSER_CACHE="$(composer config cache-files-dir)" >> "$GITHUB_ENV"
226226

227227
- name: Cache composer dependencies
228-
uses: actions/cache@v4
228+
uses: actions/cache@v5
229229
with:
230230
path: $COMPOSER_CACHE
231231
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
@@ -250,7 +250,7 @@ jobs:
250250
steps:
251251
- uses: actions/checkout@v6
252252

253-
- uses: actions/download-artifact@v6
253+
- uses: actions/download-artifact@v7
254254
with:
255255
name: coverage-data
256256
path: ${{ github.workspace }}/build

0 commit comments

Comments
 (0)