Skip to content

Commit 6eeba93

Browse files
Bump the all-actions group across 1 directory with 5 updates
Bumps the all-actions group with 5 updates in the / directory: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `4` | `5` | | [actions/github-script](https://github.com/actions/github-script) | `7` | `8` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `4` | `5` | | [actions/download-artifact](https://github.com/actions/download-artifact) | `4` | `6` | | [codecov/codecov-action](https://github.com/codecov/codecov-action) | `4` | `5` | 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/github-script` from 7 to 8 - [Release notes](https://github.com/actions/github-script/releases) - [Commits](actions/github-script@v7...v8) Updates `actions/upload-artifact` from 4 to 5 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4...v5) Updates `actions/download-artifact` from 4 to 6 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v4...v6) Updates `codecov/codecov-action` from 4 to 5 - [Release notes](https://github.com/codecov/codecov-action/releases) - [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md) - [Commits](codecov/codecov-action@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/github-script dependency-version: '8' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions - dependency-name: actions/upload-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions - dependency-name: actions/download-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions - dependency-name: codecov/codecov-action 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 1367034 commit 6eeba93

2 files changed

Lines changed: 10 additions & 10 deletions

File tree

.github/workflows/documentation.yml

Lines changed: 2 additions & 2 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

2424
- name: Lint markdown files
2525
uses: nosborn/github-action-markdown-cli@v3
@@ -42,7 +42,7 @@ jobs:
4242
steps:
4343
- name: Run docs build
4444
if: github.event_name != 'pull_request'
45-
uses: actions/github-script@v7
45+
uses: actions/github-script@v8
4646
with:
4747
# Token has to be generated on a user account that controls the docs-repository.
4848
# The _only_ scope to select is "Access public repositories", nothing more.

.github/workflows/php.yml

Lines changed: 8 additions & 8 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"
@@ -94,7 +94,7 @@ jobs:
9494

9595
- name: Save coverage data
9696
if: ${{ matrix.php-versions == '8.5' }}
97-
uses: actions/upload-artifact@v4
97+
uses: actions/upload-artifact@v5
9898
with:
9999
name: coverage-data
100100
path: ${{ github.workspace }}/build
@@ -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"
@@ -167,7 +167,7 @@ jobs:
167167
- name: Setup problem matchers for PHP
168168
run: echo "::add-matcher::${{ runner.tool_cache }}/php.json"
169169

170-
- uses: actions/checkout@v4
170+
- uses: actions/checkout@v5
171171

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

222-
- uses: actions/checkout@v4
222+
- uses: actions/checkout@v5
223223

224224
- name: Get composer cache directory
225225
run: echo COMPOSER_CACHE="$(composer config cache-files-dir)" >> "$GITHUB_ENV"
@@ -248,15 +248,15 @@ jobs:
248248
runs-on: [ubuntu-latest]
249249
needs: [unit-tests-linux]
250250
steps:
251-
- uses: actions/checkout@v4
251+
- uses: actions/checkout@v5
252252

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

258258
- name: Codecov
259-
uses: codecov/codecov-action@v4
259+
uses: codecov/codecov-action@v5
260260
with:
261261
token: ${{ secrets.CODECOV_TOKEN }}
262262
fail_ci_if_error: true

0 commit comments

Comments
 (0)