Skip to content

Commit c18c2d4

Browse files
Bump the all-actions group with 2 updates
Bumps the all-actions group with 2 updates: [actions/checkout](https://github.com/actions/checkout) and [actions/download-artifact](https://github.com/actions/download-artifact). Updates `actions/checkout` from 4 to 5 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v5) Updates `actions/download-artifact` from 4 to 5 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions - dependency-name: actions/download-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 3d4a3fe commit c18c2d4

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

.github/workflows/documentation.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
runs-on: [ubuntu-latest]
2020

2121
steps:
22-
- uses: actions/checkout@v4
22+
- uses: actions/checkout@v5
2323

2424
- name: Lint markdown files
2525
uses: nosborn/github-action-markdown-cli@v3

.github/workflows/php.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
runs-on: ['ubuntu-latest']
2020

2121
steps:
22-
- uses: actions/checkout@v4
22+
- uses: actions/checkout@v5
2323
with:
2424
fetch-depth: 0
2525

@@ -56,7 +56,7 @@ jobs:
5656
- name: Setup problem matchers for PHP
5757
run: echo "::add-matcher::${{ runner.tool_cache }}/php.json"
5858

59-
- uses: actions/checkout@v4
59+
- uses: actions/checkout@v5
6060

6161
- name: Get composer cache directory
6262
run: echo COMPOSER_CACHE="$(composer config cache-files-dir)" >> "$GITHUB_ENV"
@@ -108,7 +108,7 @@ jobs:
108108
- name: Setup problem matchers for PHP
109109
run: echo "::add-matcher::${{ runner.tool_cache }}/php.json"
110110

111-
- uses: actions/checkout@v4
111+
- uses: actions/checkout@v5
112112

113113
- name: Get composer cache directory
114114
run: echo COMPOSER_CACHE="$(composer config cache-files-dir)" >> "$GITHUB_ENV"
@@ -164,7 +164,7 @@ jobs:
164164
git config --global core.autocrlf false
165165
git config --global core.eol lf
166166
167-
- uses: actions/checkout@v4
167+
- uses: actions/checkout@v5
168168

169169
- name: Get composer cache directory
170170
run: echo COMPOSER_CACHE="$(composer config cache-files-dir)" >> "$GITHUB_ENV"
@@ -226,7 +226,7 @@ jobs:
226226
git config --global core.autocrlf false
227227
git config --global core.eol lf
228228
229-
- uses: actions/checkout@v4
229+
- uses: actions/checkout@v5
230230

231231
- name: Get composer cache directory
232232
run: echo COMPOSER_CACHE="$(composer config cache-files-dir)" >> "$env:GITHUB_ENV"
@@ -249,9 +249,9 @@ jobs:
249249
runs-on: [ubuntu-latest]
250250
needs: [unit-tests-linux]
251251
steps:
252-
- uses: actions/checkout@v4
252+
- uses: actions/checkout@v5
253253

254-
- uses: actions/download-artifact@v4
254+
- uses: actions/download-artifact@v5
255255
with:
256256
name: coverage-data
257257
path: ${{ github.workspace }}/build

0 commit comments

Comments
 (0)