Skip to content
Merged
Show file tree
Hide file tree
Changes from 5 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
10 changes: 5 additions & 5 deletions build.assets/Dockerfile-grpcbox
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
# syntax=docker/dockerfile:1

FROM docker.io/golang:1.24.7
FROM docker.io/golang:1.24.9

# Image layers go from less likely to most likely to change.
RUN apt-get update && \
apt-get install -y --no-install-recommends \
npm \
unzip \
&& \
npm \
unzip \
&& \
rm -rf /var/lib/apt/lists/*

# protoc-gen-gogofast
Expand All @@ -27,7 +27,7 @@ RUN npm install --global "grpc-tools@$NODE_GRPC_TOOLS_VERSION" "grpc_tools_node_
# eg, "v1.26.1"
ARG BUF_VERSION
RUN VERSION="$BUF_VERSION"; \
go install "github.com/bufbuild/buf/cmd/buf@$VERSION"
go install "github.com/bufbuild/buf/cmd/buf@$VERSION"

# Pre-install go-runned binaries.
# This is meant to be the only step that changes depending on the Teleport
Expand Down
2 changes: 1 addition & 1 deletion build.assets/tooling/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/gravitational/teleport/build.assets/tooling

go 1.24.7
go 1.24.9

require (
buf.build/go/bufplugin v0.9.0
Expand Down
2 changes: 1 addition & 1 deletion build.assets/versions.mk
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# Keep versions in sync with devbox.json, when applicable.

# Sync with devbox.json.
GOLANG_VERSION ?= go1.24.7
GOLANG_VERSION ?= go1.24.9
GOLANGCI_LINT_VERSION ?= v2.1.5

# NOTE: Remember to update engines.node in package.json to match the major version.
Expand Down
2 changes: 1 addition & 1 deletion e
Submodule e updated from a5bde0 to 71b910
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/gravitational/teleport

go 1.24.7
go 1.24.9

require (
cloud.google.com/go/cloudsqlconn v1.9.0
Expand Down
2 changes: 1 addition & 1 deletion integrations/event-handler/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/gravitational/teleport/integrations/event-handler

go 1.24.7
go 1.24.9

require (
github.com/alecthomas/kong v0.9.0
Expand Down
2 changes: 1 addition & 1 deletion integrations/terraform/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/gravitational/teleport/integrations/terraform

go 1.24.7
go 1.24.9

// Doc generation tooling
require github.com/hashicorp/terraform-plugin-docs v0.0.0 // replaced
Expand Down
Loading