diff --git a/api/go.mod b/api/go.mod index 81bc0f56b97a2..8b976127275f8 100644 --- a/api/go.mod +++ b/api/go.mod @@ -1,6 +1,6 @@ module github.com/gravitational/teleport/api -go 1.25.1 +go 1.25.3 require ( github.com/charlievieth/strcase v0.0.5 diff --git a/assets/backport/go.mod b/assets/backport/go.mod index 951dc026d5467..bf9f0429e7d88 100644 --- a/assets/backport/go.mod +++ b/assets/backport/go.mod @@ -1,6 +1,6 @@ module github.com/teleport/assets/backport -go 1.25.1 +go 1.25.3 require ( github.com/google/go-github/v41 v41.0.0 diff --git a/build.assets/Dockerfile-grpcbox b/build.assets/Dockerfile-grpcbox index e0af179b19113..c28c2abee84b8 100644 --- a/build.assets/Dockerfile-grpcbox +++ b/build.assets/Dockerfile-grpcbox @@ -1,6 +1,6 @@ # syntax=docker/dockerfile:1 -FROM docker.io/golang:1.25.1 +FROM docker.io/golang:1.25.3 # Image layers go from less likely to most likely to change. RUN apt-get update && \ @@ -47,7 +47,7 @@ RUN \ go -C /tooling-tmp run -exec true ./cmd/buf-plugin-linters && \ rm -rf /tooling-tmp - ARG UID - ARG GID - RUN mkdir -p /.cache /.npm && \ - chown -R $UID:$GID /.cache /.npm /go/pkg/mod/ +ARG UID +ARG GID +RUN mkdir -p /.cache /.npm && \ + chown -R $UID:$GID /.cache /.npm /go/pkg/mod/ diff --git a/build.assets/tooling/go.mod b/build.assets/tooling/go.mod index ad6a6f5f99b5b..f4036424a6a76 100644 --- a/build.assets/tooling/go.mod +++ b/build.assets/tooling/go.mod @@ -1,6 +1,6 @@ module github.com/gravitational/teleport/build.assets/tooling -go 1.25.1 +go 1.25.3 require ( buf.build/go/bufplugin v0.9.0 diff --git a/build.assets/versions.mk b/build.assets/versions.mk index 7acbe48fd9641..362ea722f08d4 100644 --- a/build.assets/versions.mk +++ b/build.assets/versions.mk @@ -2,7 +2,7 @@ # This file can be included in other Makefiles to avoid duplication. # Sync with devbox.json. -GOLANG_VERSION ?= go1.25.1 +GOLANG_VERSION ?= go1.25.3 GOLANGCI_LINT_VERSION ?= v2.4.0 # NOTE: Remember to update engines.node in package.json to match the major version. diff --git a/examples/access-plugin-minimal/go.mod b/examples/access-plugin-minimal/go.mod index 0c6a76d4d7fd8..4b7a3b4a50e47 100644 --- a/examples/access-plugin-minimal/go.mod +++ b/examples/access-plugin-minimal/go.mod @@ -1,6 +1,6 @@ module teleport-sheets -go 1.25.1 +go 1.25.3 require ( github.com/gravitational/teleport/api v0.0.0-20250813020053-3df242da2a4a diff --git a/examples/api-sync-roles/go.mod b/examples/api-sync-roles/go.mod index 38f4c69e5f507..cc1a7450703c5 100644 --- a/examples/api-sync-roles/go.mod +++ b/examples/api-sync-roles/go.mod @@ -1,6 +1,6 @@ module sync-roles -go 1.25.1 +go 1.25.3 require ( github.com/gravitational/teleport/api v0.0.0-20250813020053-3df242da2a4a diff --git a/examples/desktop-registration/go.mod b/examples/desktop-registration/go.mod index 009b2a33b9e82..2731f0263fa6f 100644 --- a/examples/desktop-registration/go.mod +++ b/examples/desktop-registration/go.mod @@ -1,6 +1,6 @@ module teleport-desktop-registration -go 1.25.1 +go 1.25.3 require github.com/gravitational/teleport/api v0.0.0-20250813020053-3df242da2a4a diff --git a/examples/go-client/go.mod b/examples/go-client/go.mod index 98c8a9abe01a6..a3edaff31fe44 100644 --- a/examples/go-client/go.mod +++ b/examples/go-client/go.mod @@ -1,6 +1,6 @@ module go-client -go 1.25.1 +go 1.25.3 require github.com/gravitational/teleport/api v0.0.0-20250813020053-3df242da2a4a diff --git a/examples/service-discovery-api-client/go.mod b/examples/service-discovery-api-client/go.mod index 02a620e1c144a..edb08cbdb8063 100644 --- a/examples/service-discovery-api-client/go.mod +++ b/examples/service-discovery-api-client/go.mod @@ -1,6 +1,6 @@ module register-app-service -go 1.25.1 +go 1.25.3 require ( github.com/docker/docker v28.3.3+incompatible diff --git a/examples/teleport-usage/go.mod b/examples/teleport-usage/go.mod index 9076dabc4e184..cd6a06056372f 100644 --- a/examples/teleport-usage/go.mod +++ b/examples/teleport-usage/go.mod @@ -1,6 +1,6 @@ module usage-script -go 1.25.1 +go 1.25.3 require ( github.com/aws/aws-sdk-go-v2 v1.38.0 diff --git a/go.mod b/go.mod index 4973d572d982b..ca934fd1ca139 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/gravitational/teleport -go 1.25.1 +go 1.25.3 ignore ( ./build diff --git a/integrations/event-handler/go.mod b/integrations/event-handler/go.mod index d254c6264677a..cae549f3189b0 100644 --- a/integrations/event-handler/go.mod +++ b/integrations/event-handler/go.mod @@ -1,6 +1,6 @@ module github.com/gravitational/teleport/integrations/event-handler -go 1.25.1 +go 1.25.3 require ( github.com/alecthomas/kong v1.12.1 diff --git a/integrations/terraform-mwi/go.mod b/integrations/terraform-mwi/go.mod index 1572222ed099d..759074716dd91 100644 --- a/integrations/terraform-mwi/go.mod +++ b/integrations/terraform-mwi/go.mod @@ -1,6 +1,6 @@ module github.com/gravitational/teleport/integrations/terraform-mwi -go 1.25.1 +go 1.25.3 require ( github.com/gravitational/teleport v0.0.0-00010101000000-000000000000 diff --git a/integrations/terraform/go.mod b/integrations/terraform/go.mod index 36afba354815e..87f287ec6c9f5 100644 --- a/integrations/terraform/go.mod +++ b/integrations/terraform/go.mod @@ -1,6 +1,6 @@ module github.com/gravitational/teleport/integrations/terraform -go 1.25.1 +go 1.25.3 // TF provider dependencies require (