Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: bump to golang1.23.1 #4206

Merged
merged 4 commits into from
Sep 11, 2024
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
2 changes: 1 addition & 1 deletion examples/extension-server/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/exampleorg/envoygateway-extension

go 1.22.7
go 1.23.1

require (
github.com/envoyproxy/gateway v1.0.2
Expand Down
2 changes: 1 addition & 1 deletion examples/kubernetes/ext-proc-grpc-service.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -361,7 +361,7 @@ spec:
- sh
- "-c"
- "cp -a /app /app-live && cd /app-live && go run . --certPath=/app-live/certs/ "
image: golang:1.22.7-alpine
image: golang:1.23.1-alpine
ports:
- containerPort: 8000
volumeMounts:
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 github.com/envoyproxy/gateway

go 1.22.7
go 1.23.1

replace github.com/imdario/mergo => github.com/imdario/mergo v0.3.16

Expand Down
2 changes: 1 addition & 1 deletion site/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/google/docsy-example

go 1.22.7
go 1.23.1

require (
github.com/FortAwesome/Font-Awesome v0.0.0-20240402185447-c0f460dca7f7 // indirect
Expand Down
1 change: 1 addition & 0 deletions test/e2e/tests/session_persistence.go
Original file line number Diff line number Diff line change
Expand Up @@ -137,6 +137,7 @@ var CookieBasedSessionPersistenceTest = suite.ConformanceTest{
MaxAge: 10,
Path: "/v2",
HttpOnly: true,
Quoted: true,
}, cmpopts.IgnoreFields(http.Cookie{}, "Value", "Raw"), // Ignore the value as it is random.
); diff != "" {
t.Fatalf("unexpected cookie: %v", diff)
Expand Down
2 changes: 1 addition & 1 deletion tools/github-actions/setup-deps/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ runs:
run: sudo apt-get install libbtrfs-dev -y
- uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.1
with:
go-version: 1.22.x
go-version: 1.23.x
cache: true
2 changes: 1 addition & 1 deletion tools/src/buf/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module local

go 1.22.7
go 1.23.1

require github.com/bufbuild/buf v1.40.1

Expand Down
2 changes: 1 addition & 1 deletion tools/src/gci/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module local

go 1.22.7
go 1.23.1

require github.com/daixiang0/gci v0.13.4

Expand Down
2 changes: 1 addition & 1 deletion tools/src/golangci-lint/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module local

go 1.22.7
go 1.23.1

require github.com/golangci/golangci-lint v1.60.3

Expand Down
2 changes: 1 addition & 1 deletion tools/src/helm-docs/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/envoyproxy/gateway/tools/src/helm-docs

go 1.22.7
go 1.23.1

require github.com/norwoodj/helm-docs v1.14.2

Expand Down
2 changes: 1 addition & 1 deletion tools/src/jb/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/envoyproxy/gateway/tools/src/jb

go 1.22.7
go 1.23.1

require github.com/jsonnet-bundler/jsonnet-bundler v0.5.1

Expand Down
2 changes: 1 addition & 1 deletion tools/src/jsonnet/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/envoyproxy/gateway/tools/src/jsonnet

go 1.22.7
go 1.23.1

require github.com/google/go-jsonnet v0.20.0

Expand Down
2 changes: 1 addition & 1 deletion tools/src/kind/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/envoyproxy/gateway/tools/src/kind

go 1.22.7
go 1.23.1

require sigs.k8s.io/kind v0.24.0

Expand Down
2 changes: 1 addition & 1 deletion tools/src/protoc-gen-go-grpc/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/envoyproxy/gateway/tools/src/protoc-gen-go-grpc

go 1.22.7
go 1.23.1

require google.golang.org/grpc/cmd/protoc-gen-go-grpc v1.3.0

Expand Down
2 changes: 1 addition & 1 deletion tools/src/protoc-gen-go/go.mod
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module github.com/envoyproxy/gateway/tools/src/protoc-gen-go

go 1.22.7
go 1.23.1

require google.golang.org/protobuf v1.33.0
2 changes: 1 addition & 1 deletion tools/src/setup-envtest/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module local

go 1.22.7
go 1.23.1

require sigs.k8s.io/controller-runtime/tools/setup-envtest v0.0.0-20240813183042-b901db121e1f

Expand Down
Loading