Skip to content

Commit a79de47

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] <support@github.com>
1 parent 1602517 commit a79de47

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
@@ -18,7 +18,7 @@ jobs:
1818
runs-on: [ubuntu-latest]
1919

2020
steps:
21-
- uses: actions/checkout@v4
21+
- uses: actions/checkout@v5
2222

2323
- name: Lint markdown files
2424
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
@@ -69,7 +69,7 @@ jobs:
6969
git config --global core.autocrlf false
7070
git config --global core.eol lf
7171
72-
- uses: actions/checkout@v4
72+
- uses: actions/checkout@v5
7373

7474
- name: Get composer cache directory
7575
run: echo COMPOSER_CACHE="$(composer config cache-files-dir)" >> "$GITHUB_ENV"
@@ -131,7 +131,7 @@ jobs:
131131
git config --global core.autocrlf false
132132
git config --global core.eol lf
133133
134-
- uses: actions/checkout@v4
134+
- uses: actions/checkout@v5
135135

136136
- name: Get composer cache directory
137137
run: echo COMPOSER_CACHE="$(composer config cache-files-dir)" >> "$env:GITHUB_ENV"
@@ -168,7 +168,7 @@ jobs:
168168
- name: Setup problem matchers for PHP
169169
run: echo "::add-matcher::${{ runner.tool_cache }}/php.json"
170170

171-
- uses: actions/checkout@v4
171+
- uses: actions/checkout@v5
172172

173173
- name: Get composer cache directory
174174
run: echo COMPOSER_CACHE="$(composer config cache-files-dir)" >> "$GITHUB_ENV"
@@ -234,7 +234,7 @@ jobs:
234234
- name: Setup problem matchers for PHP
235235
run: echo "::add-matcher::${{ runner.tool_cache }}/php.json"
236236

237-
- uses: actions/checkout@v4
237+
- uses: actions/checkout@v5
238238

239239
- name: Get composer cache directory
240240
run: echo COMPOSER_CACHE="$(composer config cache-files-dir)" >> "$GITHUB_ENV"
@@ -263,9 +263,9 @@ jobs:
263263
runs-on: [ubuntu-latest]
264264
needs: [unit-tests-linux]
265265
steps:
266-
- uses: actions/checkout@v4
266+
- uses: actions/checkout@v5
267267

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

0 commit comments

Comments
 (0)