Skip to content

Commit e847f29

Browse files
authored
deps: bump go version to 1.24 (#8509)
1 parent 4375c78 commit e847f29

File tree

12 files changed

+20
-20
lines changed

12 files changed

+20
-20
lines changed

.github/workflows/testing.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
- name: Setup Go
2828
uses: actions/setup-go@v5
2929
with:
30-
go-version: '1.24'
30+
go-version: '1.25'
3131
cache-dependency-path: "**/go.sum"
3232

3333
# Run the vet-proto checks.
@@ -45,32 +45,32 @@ jobs:
4545
matrix:
4646
include:
4747
- type: vet
48-
goversion: '1.23'
48+
goversion: '1.24'
4949

5050
- type: extras
51-
goversion: '1.24'
51+
goversion: '1.25'
5252

5353
- type: tests
54-
goversion: '1.24'
54+
goversion: '1.25'
5555

5656
- type: tests
57-
goversion: '1.24'
57+
goversion: '1.25'
5858
testflags: -race
5959

6060
- type: tests
61-
goversion: '1.24'
61+
goversion: '1.25'
6262
goarch: 386
6363

6464
- type: tests
65-
goversion: '1.24'
65+
goversion: '1.25'
6666
goarch: arm64
6767
runner: ubuntu-24.04-arm
6868

6969
- type: tests
70-
goversion: '1.23'
70+
goversion: '1.24'
7171

7272
- type: tests
73-
goversion: '1.24'
73+
goversion: '1.25'
7474
testflags: -race
7575
grpcenv: 'GRPC_EXPERIMENTAL_ENABLE_NEW_PICK_FIRST=false'
7676

cmd/protoc-gen-go-grpc/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module google.golang.org/grpc/cmd/protoc-gen-go-grpc
22

3-
go 1.23.0
3+
go 1.24.0
44

55
require (
66
google.golang.org/grpc v1.70.0

examples/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module google.golang.org/grpc/examples
22

3-
go 1.23.0
3+
go 1.24.0
44

55
require (
66
github.com/cncf/xds/go v0.0.0-20250501225837-2ac532fd4443

gcp/observability/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module google.golang.org/grpc/gcp/observability
22

3-
go 1.23.0
3+
go 1.24.0
44

55
require (
66
cloud.google.com/go/logging v1.13.0

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module google.golang.org/grpc
22

3-
go 1.23.0
3+
go 1.24.0
44

55
require (
66
github.com/cespare/xxhash/v2 v2.3.0

interop/observability/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module google.golang.org/grpc/interop/observability
22

3-
go 1.23.0
3+
go 1.24.0
44

55
require (
66
google.golang.org/grpc v1.74.2

interop/xds/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module google.golang.org/grpc/interop/xds
22

3-
go 1.23.0
3+
go 1.24.0
44

55
replace google.golang.org/grpc => ../..
66

scripts/vet.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ for MOD_FILE in $(find . -name 'go.mod'); do
9797
gofmt -s -d -l . 2>&1 | fail_on_output
9898
goimports -l . 2>&1 | not grep -vE "\.pb\.go"
9999

100-
go mod tidy -compat=1.23
100+
go mod tidy -compat=1.24
101101
git status --porcelain 2>&1 | fail_on_output || \
102102
(git status; git --no-pager diff; exit 1)
103103

security/advancedtls/examples/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module google.golang.org/grpc/security/advancedtls/examples
22

3-
go 1.23.0
3+
go 1.24.0
44

55
require (
66
google.golang.org/grpc v1.74.2

security/advancedtls/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module google.golang.org/grpc/security/advancedtls
22

3-
go 1.23.0
3+
go 1.24.0
44

55
require (
66
github.com/google/go-cmp v0.7.0

0 commit comments

Comments
 (0)