Skip to content

Commit 534936a

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 f0fb013 commit 534936a

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
@@ -72,7 +72,7 @@ jobs:
7272
git config --global core.autocrlf false
7373
git config --global core.eol lf
7474
75-
- uses: actions/checkout@v4
75+
- uses: actions/checkout@v5
7676

7777
- name: Get composer cache directory
7878
run: echo COMPOSER_CACHE="$(composer config cache-files-dir)" >> "$GITHUB_ENV"
@@ -137,7 +137,7 @@ jobs:
137137
git config --global core.autocrlf false
138138
git config --global core.eol lf
139139
140-
- uses: actions/checkout@v4
140+
- uses: actions/checkout@v5
141141

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

177-
- uses: actions/checkout@v4
177+
- uses: actions/checkout@v5
178178

179179
- name: Get composer cache directory
180180
run: echo COMPOSER_CACHE="$(composer config cache-files-dir)" >> "$GITHUB_ENV"
@@ -226,7 +226,7 @@ jobs:
226226
- name: Setup problem matchers for PHP
227227
run: echo "::add-matcher::${{ runner.tool_cache }}/php.json"
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)" >> "$GITHUB_ENV"
@@ -255,9 +255,9 @@ jobs:
255255
runs-on: [ubuntu-latest]
256256
needs: [unit-tests-linux]
257257
steps:
258-
- uses: actions/checkout@v4
258+
- uses: actions/checkout@v5
259259

260-
- uses: actions/download-artifact@v4
260+
- uses: actions/download-artifact@v5
261261
with:
262262
name: coverage-data
263263
path: ${{ github.workspace }}/build

0 commit comments

Comments
 (0)