Skip to content

Commit 4bdb15d

Browse files
build(deps): bump the actions group across 1 directory with 5 updates
Bumps the actions group with 5 updates in the / directory: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `5` | `6` | | [astral-sh/setup-uv](https://github.com/astral-sh/setup-uv) | `6` | `7` | | [actions/cache](https://github.com/actions/cache) | `4` | `5` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `4` | `5` | | [actions/download-artifact](https://github.com/actions/download-artifact) | `5` | `6` | Updates `actions/checkout` from 5 to 6 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v5...v6) Updates `astral-sh/setup-uv` from 6 to 7 - [Release notes](https://github.com/astral-sh/setup-uv/releases) - [Commits](astral-sh/setup-uv@v6...v7) Updates `actions/cache` from 4 to 5 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v4...v5) 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 5 to 6 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v5...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: astral-sh/setup-uv dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/upload-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/download-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 23bdac5 commit 4bdb15d

File tree

8 files changed

+19
-19
lines changed

8 files changed

+19
-19
lines changed

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

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

2525
steps:
2626
- name: Checkout repository
27-
uses: actions/checkout@v5
27+
uses: actions/checkout@v6
2828
with:
2929
fetch-depth: 1
3030
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@v5
29+
uses: actions/checkout@v6
3030
with:
3131
fetch-depth: 1
3232
submodules: true

.github/workflows/comp-integration.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ jobs:
7070
- 6379:6379
7171

7272
steps:
73-
- uses: actions/checkout@v5
73+
- uses: actions/checkout@v6
7474
with:
7575
persist-credentials: false
7676
submodules: true
@@ -88,11 +88,11 @@ jobs:
8888
8989
- name: Install uv
9090
if: steps.should_test.outputs.test != 'false'
91-
uses: astral-sh/setup-uv@v6
91+
uses: astral-sh/setup-uv@v7
9292

9393
- name: Setup uv cache
9494
if: steps.should_test.outputs.test != 'false'
95-
uses: actions/cache@v4
95+
uses: actions/cache@v5
9696
with:
9797
path: |
9898
~/.cache/uv
@@ -189,7 +189,7 @@ jobs:
189189
190190
- name: Upload integration test results
191191
if: always() && steps.should_test.outputs.test != 'false'
192-
uses: actions/upload-artifact@v4
192+
uses: actions/upload-artifact@v5
193193
with:
194194
name: integration-test-results-${{ matrix.component }}-py${{ matrix.python }}
195195
path: |

.github/workflows/docker.yml

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

4646
steps:
4747
- name: Checkout repository
48-
uses: actions/checkout@v5
48+
uses: actions/checkout@v6
4949
with:
5050
persist-credentials: false
5151
submodules: true

.github/workflows/integration.yml

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

.github/workflows/lint.yml

Lines changed: 5 additions & 5 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@v5
42+
- uses: actions/checkout@v6
4343
- uses: dorny/paths-filter@v3
4444
id: filter
4545
with:
@@ -97,15 +97,15 @@ jobs:
9797

9898
runs-on: ubuntu-latest
9999
steps:
100-
- uses: actions/checkout@v5
100+
- uses: actions/checkout@v6
101101
with:
102102
persist-credentials: false
103103

104104
- name: Install uv
105-
uses: astral-sh/setup-uv@v6
105+
uses: astral-sh/setup-uv@v7
106106

107107
- name: Setup uv cache
108-
uses: actions/cache@v4
108+
uses: actions/cache@v5
109109
with:
110110
path: |
111111
~/.cache/uv
@@ -135,7 +135,7 @@ jobs:
135135
if: needs.changes.outputs.run-all == 'true' || contains(github.event.head_commit.modified, '.proto') || contains(github.event.head_commit.modified, 'protoc.sh')
136136
runs-on: ubuntu-24.04
137137
steps:
138-
- uses: actions/checkout@v5
138+
- uses: actions/checkout@v6
139139
with:
140140
persist-credentials: false
141141

.github/workflows/pre-commit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
pre-commit:
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions/checkout@v5
15+
- uses: actions/checkout@v6
1616
- uses: actions/setup-python@v6
1717
with:
1818
python-version: '3.12'

.github/workflows/tests.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -50,16 +50,16 @@ jobs:
5050
- 6379:6379
5151

5252
steps:
53-
- uses: actions/checkout@v5
53+
- uses: actions/checkout@v6
5454
with:
5555
persist-credentials: false
5656
submodules: true
5757

5858
- name: Install uv
59-
uses: astral-sh/setup-uv@v6
59+
uses: astral-sh/setup-uv@v7
6060

6161
- name: Setup uv cache
62-
uses: actions/cache@v4
62+
uses: actions/cache@v5
6363
with:
6464
path: |
6565
~/.cache/uv
@@ -151,7 +151,7 @@ jobs:
151151
152152
- name: Upload test results
153153
if: always()
154-
uses: actions/upload-artifact@v4
154+
uses: actions/upload-artifact@v5
155155
with:
156156
name: test-results-${{ matrix.component }}-py${{ matrix.python }}
157157
path: |
@@ -170,7 +170,7 @@ jobs:
170170
runs-on: ubuntu-latest
171171
steps:
172172
- name: Download all coverage reports
173-
uses: actions/download-artifact@v5
173+
uses: actions/download-artifact@v6
174174
with:
175175
pattern: test-results-*
176176
path: coverage-reports

0 commit comments

Comments
 (0)