Skip to content

Commit afacfeb

Browse files
build(deps): bump the actions group with 3 updates (#277)
Bumps the actions group with 3 updates: [actions/checkout](https://github.com/actions/checkout), [actions/download-artifact](https://github.com/actions/download-artifact) and [codecov/codecov-action](https://github.com/codecov/codecov-action). 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) 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: actions - dependency-name: actions/download-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: codecov/codecov-action dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent b1a558d commit afacfeb

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

.github/workflows/claude-code-review.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727

2828
steps:
2929
- name: Checkout repository
30-
uses: actions/checkout@v4
30+
uses: actions/checkout@v5
3131
with:
3232
fetch-depth: 1
3333
submodules: true

.github/workflows/claude.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
actions: read # Required for Claude to read CI results on PRs
2727
steps:
2828
- name: Checkout repository
29-
uses: actions/checkout@v4
29+
uses: actions/checkout@v5
3030
with:
3131
fetch-depth: 1
3232
submodules: true

.github/workflows/integration.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ jobs:
6868
contains(github.event.pull_request.labels.*.name, 'full-integration')
6969
runs-on: gha-ubuntu-8
7070
steps:
71-
- uses: actions/checkout@v4
71+
- uses: actions/checkout@v5
7272
with:
7373
persist-credentials: false
7474
submodules: true

.github/workflows/lint.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
patcher: ${{ steps.filter.outputs.patcher }}
4040
run-all: ${{ steps.filter.outputs.workflow || steps.filter.outputs.global }}
4141
steps:
42-
- uses: actions/checkout@v4
42+
- uses: actions/checkout@v5
4343
- uses: dorny/paths-filter@v3
4444
id: filter
4545
with:
@@ -92,7 +92,7 @@ jobs:
9292

9393
runs-on: ubuntu-latest
9494
steps:
95-
- uses: actions/checkout@v4
95+
- uses: actions/checkout@v5
9696
with:
9797
persist-credentials: false
9898

@@ -130,7 +130,7 @@ jobs:
130130
if: needs.changes.outputs.run-all == 'true' || contains(github.event.head_commit.modified, '.proto') || contains(github.event.head_commit.modified, 'protoc.sh')
131131
runs-on: ubuntu-24.04
132132
steps:
133-
- uses: actions/checkout@v4
133+
- uses: actions/checkout@v5
134134
with:
135135
persist-credentials: false
136136

.github/workflows/tests.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ jobs:
7373
- 6379:6379
7474

7575
steps:
76-
- uses: actions/checkout@v4
76+
- uses: actions/checkout@v5
7777
with:
7878
persist-credentials: false
7979
submodules: true
@@ -193,13 +193,13 @@ jobs:
193193
runs-on: ubuntu-latest
194194
steps:
195195
- name: Download all coverage reports
196-
uses: actions/download-artifact@v4
196+
uses: actions/download-artifact@v5
197197
with:
198198
pattern: test-results-*
199199
path: coverage-reports
200200

201201
- name: Upload coverage to Codecov
202-
uses: codecov/codecov-action@v4
202+
uses: codecov/codecov-action@v5
203203
with:
204204
directory: coverage-reports
205205
files: '*/coverage.xml,**/coverage.xml'
@@ -247,7 +247,7 @@ jobs:
247247
- 6379:6379
248248

249249
steps:
250-
- uses: actions/checkout@v4
250+
- uses: actions/checkout@v5
251251
with:
252252
persist-credentials: false
253253
submodules: true

0 commit comments

Comments
 (0)