Skip to content

Commit daf72a5

Browse files
committed
chore: update workflow files for consistency and maintenance
Signed-off-by: okjiang <819421878@qq.com>
1 parent 9838707 commit daf72a5

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

.github/workflows/check.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
uses: actions/checkout@v4
1313
- uses: actions/setup-go@v5
1414
with:
15-
go-version: '1.25.4'
15+
go-version: '1.25.5'
1616
- name: Make Check
1717
run: |
1818
make build

.github/workflows/pd-docker-image.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,6 @@ jobs:
1919
uses: actions/checkout@v4
2020
- uses: actions/setup-go@v5
2121
with:
22-
go-version: '1.25.4'
22+
go-version: '1.25.5'
2323
- name: Make
2424
run: make docker-image

.github/workflows/pd-tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555
uses: actions/checkout@v4
5656
- uses: actions/setup-go@v5
5757
with:
58-
go-version: '1.25.4'
58+
go-version: '1.25.5'
5959
- name: ${{ matrix.name }}
6060
env:
6161
WORKER_ID: ${{ matrix.worker_id }}

.github/workflows/tso-function-test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,6 @@ jobs:
2727
uses: actions/checkout@v4
2828
- uses: actions/setup-go@v5
2929
with:
30-
go-version: '1.25.4'
30+
go-version: '1.25.5'
3131
- name: Make TSO Function Test
3232
run: make test-tso-function

client/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/tikv/pd/client
22

3-
go 1.25.4
3+
go 1.25.5
44

55
require (
66
github.com/BurntSushi/toml v0.3.1

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/tikv/pd
22

3-
go 1.25.4
3+
go 1.25.5
44

55
// When you modify PD cooperatively with kvproto, this will be useful to submit the PR to PD and the PR to
66
// kvproto at the same time. You can run `go mod tidy` to make it replaced with go-mod style specification.

tests/integrations/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/tikv/pd/tests/integrations
22

3-
go 1.25.4
3+
go 1.25.5
44

55
replace (
66
github.com/tikv/pd => ../../

tools/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/tikv/pd/tools
22

3-
go 1.25.4
3+
go 1.25.5
44

55
replace (
66
github.com/tikv/pd => ../

0 commit comments

Comments
 (0)