mirror of https://github.com/grpc/grpc-go.git
deps: bump go version to 1.24 (#8509)
This commit is contained in:
parent
4375c78445
commit
e847f29f32
|
@ -27,7 +27,7 @@ jobs:
|
||||||
- name: Setup Go
|
- name: Setup Go
|
||||||
uses: actions/setup-go@v5
|
uses: actions/setup-go@v5
|
||||||
with:
|
with:
|
||||||
go-version: '1.24'
|
go-version: '1.25'
|
||||||
cache-dependency-path: "**/go.sum"
|
cache-dependency-path: "**/go.sum"
|
||||||
|
|
||||||
# Run the vet-proto checks.
|
# Run the vet-proto checks.
|
||||||
|
@ -45,32 +45,32 @@ jobs:
|
||||||
matrix:
|
matrix:
|
||||||
include:
|
include:
|
||||||
- type: vet
|
- type: vet
|
||||||
goversion: '1.23'
|
goversion: '1.24'
|
||||||
|
|
||||||
- type: extras
|
- type: extras
|
||||||
goversion: '1.24'
|
goversion: '1.25'
|
||||||
|
|
||||||
- type: tests
|
- type: tests
|
||||||
goversion: '1.24'
|
goversion: '1.25'
|
||||||
|
|
||||||
- type: tests
|
- type: tests
|
||||||
goversion: '1.24'
|
goversion: '1.25'
|
||||||
testflags: -race
|
testflags: -race
|
||||||
|
|
||||||
- type: tests
|
- type: tests
|
||||||
goversion: '1.24'
|
goversion: '1.25'
|
||||||
goarch: 386
|
goarch: 386
|
||||||
|
|
||||||
- type: tests
|
- type: tests
|
||||||
goversion: '1.24'
|
goversion: '1.25'
|
||||||
goarch: arm64
|
goarch: arm64
|
||||||
runner: ubuntu-24.04-arm
|
runner: ubuntu-24.04-arm
|
||||||
|
|
||||||
- type: tests
|
- type: tests
|
||||||
goversion: '1.23'
|
goversion: '1.24'
|
||||||
|
|
||||||
- type: tests
|
- type: tests
|
||||||
goversion: '1.24'
|
goversion: '1.25'
|
||||||
testflags: -race
|
testflags: -race
|
||||||
grpcenv: 'GRPC_EXPERIMENTAL_ENABLE_NEW_PICK_FIRST=false'
|
grpcenv: 'GRPC_EXPERIMENTAL_ENABLE_NEW_PICK_FIRST=false'
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
module google.golang.org/grpc/cmd/protoc-gen-go-grpc
|
module google.golang.org/grpc/cmd/protoc-gen-go-grpc
|
||||||
|
|
||||||
go 1.23.0
|
go 1.24.0
|
||||||
|
|
||||||
require (
|
require (
|
||||||
google.golang.org/grpc v1.70.0
|
google.golang.org/grpc v1.70.0
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
module google.golang.org/grpc/examples
|
module google.golang.org/grpc/examples
|
||||||
|
|
||||||
go 1.23.0
|
go 1.24.0
|
||||||
|
|
||||||
require (
|
require (
|
||||||
github.com/cncf/xds/go v0.0.0-20250501225837-2ac532fd4443
|
github.com/cncf/xds/go v0.0.0-20250501225837-2ac532fd4443
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
module google.golang.org/grpc/gcp/observability
|
module google.golang.org/grpc/gcp/observability
|
||||||
|
|
||||||
go 1.23.0
|
go 1.24.0
|
||||||
|
|
||||||
require (
|
require (
|
||||||
cloud.google.com/go/logging v1.13.0
|
cloud.google.com/go/logging v1.13.0
|
||||||
|
|
2
go.mod
2
go.mod
|
@ -1,6 +1,6 @@
|
||||||
module google.golang.org/grpc
|
module google.golang.org/grpc
|
||||||
|
|
||||||
go 1.23.0
|
go 1.24.0
|
||||||
|
|
||||||
require (
|
require (
|
||||||
github.com/cespare/xxhash/v2 v2.3.0
|
github.com/cespare/xxhash/v2 v2.3.0
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
module google.golang.org/grpc/interop/observability
|
module google.golang.org/grpc/interop/observability
|
||||||
|
|
||||||
go 1.23.0
|
go 1.24.0
|
||||||
|
|
||||||
require (
|
require (
|
||||||
google.golang.org/grpc v1.74.2
|
google.golang.org/grpc v1.74.2
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
module google.golang.org/grpc/interop/xds
|
module google.golang.org/grpc/interop/xds
|
||||||
|
|
||||||
go 1.23.0
|
go 1.24.0
|
||||||
|
|
||||||
replace google.golang.org/grpc => ../..
|
replace google.golang.org/grpc => ../..
|
||||||
|
|
||||||
|
|
|
@ -97,7 +97,7 @@ for MOD_FILE in $(find . -name 'go.mod'); do
|
||||||
gofmt -s -d -l . 2>&1 | fail_on_output
|
gofmt -s -d -l . 2>&1 | fail_on_output
|
||||||
goimports -l . 2>&1 | not grep -vE "\.pb\.go"
|
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 --porcelain 2>&1 | fail_on_output || \
|
||||||
(git status; git --no-pager diff; exit 1)
|
(git status; git --no-pager diff; exit 1)
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
module google.golang.org/grpc/security/advancedtls/examples
|
module google.golang.org/grpc/security/advancedtls/examples
|
||||||
|
|
||||||
go 1.23.0
|
go 1.24.0
|
||||||
|
|
||||||
require (
|
require (
|
||||||
google.golang.org/grpc v1.74.2
|
google.golang.org/grpc v1.74.2
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
module google.golang.org/grpc/security/advancedtls
|
module google.golang.org/grpc/security/advancedtls
|
||||||
|
|
||||||
go 1.23.0
|
go 1.24.0
|
||||||
|
|
||||||
require (
|
require (
|
||||||
github.com/google/go-cmp v0.7.0
|
github.com/google/go-cmp v0.7.0
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
module google.golang.org/grpc/stats/opencensus
|
module google.golang.org/grpc/stats/opencensus
|
||||||
|
|
||||||
go 1.23.0
|
go 1.24.0
|
||||||
|
|
||||||
require (
|
require (
|
||||||
github.com/google/go-cmp v0.7.0
|
github.com/google/go-cmp v0.7.0
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
module google.golang.org/grpc/test/tools
|
module google.golang.org/grpc/test/tools
|
||||||
|
|
||||||
go 1.23.0
|
go 1.24.0
|
||||||
|
|
||||||
require (
|
require (
|
||||||
github.com/client9/misspell v0.3.4
|
github.com/client9/misspell v0.3.4
|
||||||
|
|
Loading…
Reference in New Issue