Skip to content

Commit e6f6d4e

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/download-artifact](https://github.com/actions/download-artifact) and [codecov/codecov-action](https://github.com/codecov/codecov-action). Updates `actions/cache` from 3 to 4 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v3...v4) Updates `actions/download-artifact` from 3 to 4 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v3...v4) Updates `codecov/codecov-action` from 3 to 4 - [Release notes](https://github.com/codecov/codecov-action/releases) - [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md) - [Commits](codecov/codecov-action@v3...v4) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions - dependency-name: actions/download-artifact dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions - dependency-name: codecov/codecov-action dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 75adde6 commit e6f6d4e

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
@@ -62,7 +62,7 @@ jobs:
6262
run: echo COMPOSER_CACHE="$(composer config cache-files-dir)" >> "$GITHUB_ENV"
6363

6464
- name: Cache composer dependencies
65-
uses: actions/cache@v3
65+
uses: actions/cache@v4
6666
with:
6767
path: $COMPOSER_CACHE
6868
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
@@ -128,7 +128,7 @@ jobs:
128128
run: echo COMPOSER_CACHE="$(composer config cache-files-dir)" >> "$GITHUB_ENV"
129129

130130
- name: Cache composer dependencies
131-
uses: actions/cache@v3
131+
uses: actions/cache@v4
132132
with:
133133
path: $COMPOSER_CACHE
134134
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
@@ -184,7 +184,7 @@ jobs:
184184
run: echo COMPOSER_CACHE="$(composer config cache-files-dir)" >> "$GITHUB_ENV"
185185

186186
- name: Cache composer dependencies
187-
uses: actions/cache@v3
187+
uses: actions/cache@v4
188188
with:
189189
path: $COMPOSER_CACHE
190190
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
@@ -246,7 +246,7 @@ jobs:
246246
run: echo COMPOSER_CACHE="$(composer config cache-files-dir)" >> "$env:GITHUB_ENV"
247247

248248
- name: Cache composer dependencies
249-
uses: actions/cache@v3
249+
uses: actions/cache@v4
250250
with:
251251
path: $COMPOSER_CACHE
252252
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
@@ -265,13 +265,13 @@ jobs:
265265
steps:
266266
- uses: actions/checkout@v4
267267

268-
- uses: actions/download-artifact@v3
268+
- uses: actions/download-artifact@v4
269269
with:
270270
name: coverage-data
271271
path: ${{ github.workspace }}/build
272272

273273
- name: Codecov
274-
uses: codecov/codecov-action@v3
274+
uses: codecov/codecov-action@v4
275275
with:
276276
token: ${{ secrets.CODECOV_TOKEN }}
277277
fail_ci_if_error: true

0 commit comments

Comments
 (0)