Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: '1.24'
go-version: '1.25'
cache-dependency-path: "**/go.sum"

# Run the vet-proto checks.
Expand All @@ -45,32 +45,32 @@ jobs:
matrix:
include:
- type: vet
goversion: '1.23'
goversion: '1.24'

- type: extras
goversion: '1.24'
goversion: '1.25'

- type: tests
goversion: '1.24'
goversion: '1.25'

- type: tests
goversion: '1.24'
goversion: '1.25'
testflags: -race

- type: tests
goversion: '1.24'
goversion: '1.25'
goarch: 386

- type: tests
goversion: '1.24'
goversion: '1.25'
goarch: arm64
runner: ubuntu-24.04-arm

- type: tests
goversion: '1.23'
goversion: '1.24'

- type: tests
goversion: '1.24'
goversion: '1.25'
testflags: -race
grpcenv: 'GRPC_EXPERIMENTAL_ENABLE_NEW_PICK_FIRST=false'

Expand Down
2 changes: 1 addition & 1 deletion cmd/protoc-gen-go-grpc/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module google.golang.org/grpc/cmd/protoc-gen-go-grpc

go 1.23.0
go 1.24.0

require (
google.golang.org/grpc v1.70.0
Expand Down
2 changes: 1 addition & 1 deletion examples/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module google.golang.org/grpc/examples

go 1.23.0
go 1.24.0

require (
github.com/cncf/xds/go v0.0.0-20250501225837-2ac532fd4443
Expand Down
2 changes: 1 addition & 1 deletion gcp/observability/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module google.golang.org/grpc/gcp/observability

go 1.23.0
go 1.24.0

require (
cloud.google.com/go/logging v1.13.0
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module google.golang.org/grpc

go 1.23.0
go 1.24.0

require (
github.com/cespare/xxhash/v2 v2.3.0
Expand Down
2 changes: 1 addition & 1 deletion interop/observability/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module google.golang.org/grpc/interop/observability

go 1.23.0
go 1.24.0

require (
google.golang.org/grpc v1.73.0
Expand Down
2 changes: 1 addition & 1 deletion interop/xds/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module google.golang.org/grpc/interop/xds

go 1.23.0
go 1.24.0

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

Expand Down
2 changes: 1 addition & 1 deletion scripts/vet.sh
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ for MOD_FILE in $(find . -name 'go.mod'); do
gofmt -s -d -l . 2>&1 | fail_on_output
goimports -l . 2>&1 | not grep -vE "\.pb\.go"

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

Expand Down
2 changes: 1 addition & 1 deletion security/advancedtls/examples/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module google.golang.org/grpc/security/advancedtls/examples

go 1.23.0
go 1.24.0

require (
google.golang.org/grpc v1.73.0
Expand Down
2 changes: 1 addition & 1 deletion security/advancedtls/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module google.golang.org/grpc/security/advancedtls

go 1.23.0
go 1.24.0

require (
github.com/google/go-cmp v0.7.0
Expand Down
2 changes: 1 addition & 1 deletion stats/opencensus/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module google.golang.org/grpc/stats/opencensus

go 1.23.0
go 1.24.0

require (
github.com/google/go-cmp v0.7.0
Expand Down
2 changes: 1 addition & 1 deletion test/tools/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module google.golang.org/grpc/test/tools

go 1.23.0
go 1.24.0

require (
github.com/client9/misspell v0.3.4
Expand Down