Skip to content

Commit 06feb73

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 0a8ab9e commit 06feb73

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
@@ -70,7 +70,7 @@ jobs:
7070
git config --global core.autocrlf false
7171
git config --global core.eol lf
7272
73-
- uses: actions/checkout@v4
73+
- uses: actions/checkout@v5
7474

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

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

175-
- uses: actions/checkout@v4
175+
- uses: actions/checkout@v5
176176

177177
- name: Get composer cache directory
178178
run: echo COMPOSER_CACHE="$(composer config cache-files-dir)" >> "$GITHUB_ENV"
@@ -242,7 +242,7 @@ jobs:
242242
- name: Setup problem matchers for PHP
243243
run: echo "::add-matcher::${{ runner.tool_cache }}/php.json"
244244

245-
- uses: actions/checkout@v4
245+
- uses: actions/checkout@v5
246246

247247
- name: Get composer cache directory
248248
run: echo COMPOSER_CACHE="$(composer config cache-files-dir)" >> "$GITHUB_ENV"
@@ -272,9 +272,9 @@ jobs:
272272
needs: [unit-tests-linux]
273273

274274
steps:
275-
- uses: actions/checkout@v4
275+
- uses: actions/checkout@v5
276276

277-
- uses: actions/download-artifact@v4
277+
- uses: actions/download-artifact@v5
278278
with:
279279
name: coverage-data
280280
path: ${{ github.workspace }}/build

0 commit comments

Comments
 (0)