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
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ ARG VARIANT=static
ARG COMMAND_NAME

# Base image configuration
ARG GOLANG_BASE_IMAGE=golang:1.25
ARG GOLANG_BASE_IMAGE=golang:1.26
ARG RUNTIME_BASE_IMAGE=gcr.io/distroless/${VARIANT}-debian12:nonroot

# Pre-download Envoy for aigw using func-e. This reduces latency and avoids
Expand Down
6 changes: 3 additions & 3 deletions cmd/aigw/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ services:

# chat-completion is a simple curl-based test client for sending requests to aigw.
chat-completion:
image: golang:1.25
image: golang:1.26
container_name: chat-completion
profiles: ["test"]
env_file:
Expand All @@ -87,7 +87,7 @@ services:

# completion is a simple curl-based test client for sending completion requests to aigw.
completion:
image: golang:1.25
image: golang:1.26
container_name: completion
profiles: ["test"]
env_file:
Expand All @@ -111,7 +111,7 @@ services:

# embeddings is a simple curl-based test client for sending embeddings requests to aigw.
embeddings:
image: golang:1.25
image: golang:1.26
container_name: embeddings
profiles: ["test"]
env_file:
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
module github.com/envoyproxy/ai-gateway

// Explicitly specify the Go patch version to be able to purge the CI cache correctly.
go 1.25.8
go 1.26.2

require (
github.com/Azure/azure-sdk-for-go/sdk/azcore v1.21.0
Expand Down
2 changes: 1 addition & 1 deletion tests/data-plane/vcr/docker-compose-otel.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ volumes:

services:
extproc-build:
image: golang:1.25
image: golang:1.26
container_name: extproc-build
working_dir: /workspace
volumes:
Expand Down
4 changes: 2 additions & 2 deletions tests/data-plane/vcr/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ volumes:

services:
extproc-build:
image: golang:1.25
image: golang:1.26
container_name: extproc-build
working_dir: /workspace
volumes:
Expand Down Expand Up @@ -66,7 +66,7 @@ services:
command: ["envoy", "-c", "/etc/envoy/envoy.yaml", "--log-level", "debug"]

openai-client:
image: golang:1.25
image: golang:1.26
container_name: openai-client
profiles: ["test"]
env_file:
Expand Down
2 changes: 1 addition & 1 deletion tools/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/envoyproxy/ai-gateway/tools

go 1.25.8
go 1.26.2

tool (
github.com/apache/skywalking-eyes/cmd/license-eye
Expand Down
Loading