Skip to content

Commit 692abdc

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 3b5e524 commit 692abdc

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
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: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
6161
- name: Setup problem matchers for PHP
6262
run: echo "::add-matcher::${{ runner.tool_cache }}/php.json"
6363

64-
- uses: actions/checkout@v4
64+
- uses: actions/checkout@v5
6565

6666
- name: Get composer cache directory
6767
run: echo COMPOSER_CACHE="$(composer config cache-files-dir)" >> "$GITHUB_ENV"
@@ -129,7 +129,7 @@ jobs:
129129
- name: Setup problem matchers for PHP
130130
run: echo "::add-matcher::${{ runner.tool_cache }}/php.json"
131131

132-
- uses: actions/checkout@v4
132+
- uses: actions/checkout@v5
133133

134134
- name: Get composer cache directory
135135
run: echo COMPOSER_CACHE="$(composer config cache-files-dir)" >> "$GITHUB_ENV"
@@ -190,7 +190,7 @@ jobs:
190190
git config --global core.autocrlf false
191191
git config --global core.eol lf
192192
193-
- uses: actions/checkout@v4
193+
- uses: actions/checkout@v5
194194

195195
- name: Get composer cache directory
196196
run: echo COMPOSER_CACHE="$(composer config cache-files-dir)" >> "$GITHUB_ENV"
@@ -252,7 +252,7 @@ jobs:
252252
git config --global core.autocrlf false
253253
git config --global core.eol lf
254254
255-
- uses: actions/checkout@v4
255+
- uses: actions/checkout@v5
256256

257257
- name: Get composer cache directory
258258
run: echo COMPOSER_CACHE="$(composer config cache-files-dir)" >> "$env:GITHUB_ENV"
@@ -275,9 +275,9 @@ jobs:
275275
runs-on: [ubuntu-latest]
276276
needs: [unit-tests-linux]
277277
steps:
278-
- uses: actions/checkout@v4
278+
- uses: actions/checkout@v5
279279

280-
- uses: actions/download-artifact@v4
280+
- uses: actions/download-artifact@v5
281281
with:
282282
name: coverage-data
283283
path: ${{ github.workspace }}/build

0 commit comments

Comments
 (0)