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 api/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/gravitational/teleport/api

go 1.23.12
go 1.24.7
Comment thread
rosstimothy marked this conversation as resolved.

require (
github.com/charlievieth/strcase v0.0.5
Expand Down
4 changes: 2 additions & 2 deletions api/types/summarizer/summarizer_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ func TestValidateInferenceModel(t *testing.T) {
t.Run(tc.msg, func(t *testing.T) {
m := proto.CloneOf(valid)
tc.fn(m)
assert.ErrorIs(t, ValidateInferenceModel(m), trace.BadParameter(tc.msg))
assert.ErrorIs(t, ValidateInferenceModel(m), &trace.BadParameterError{Message: tc.msg})
})
}
}
Expand Down Expand Up @@ -141,7 +141,7 @@ func TestValidateInferenceSecret(t *testing.T) {
t.Run(tc.msg, func(t *testing.T) {
s := proto.CloneOf(valid)
tc.fn(s)
assert.ErrorIs(t, ValidateInferenceSecret(s), trace.BadParameter(tc.msg))
assert.ErrorIs(t, ValidateInferenceSecret(s), &trace.BadParameterError{Message: tc.msg})
})
}
}
Expand Down
4 changes: 1 addition & 3 deletions assets/backport/go.mod
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
module github.com/teleport/assets/backport

go 1.23.7

toolchain go1.24.1
go 1.24.7

require (
github.com/google/go-github/v41 v41.0.0
Expand Down
2 changes: 1 addition & 1 deletion build.assets/Dockerfile-grpcbox
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# syntax=docker/dockerfile:1

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

# Image layers go from less likely to most likely to change.
RUN apt-get update && \
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.6
go 1.24.7

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.6
GOLANG_VERSION ?= go1.24.7
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 examples/access-plugin-minimal/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module teleport-sheets

go 1.24.6
go 1.24.7

require (
github.com/gravitational/teleport/api v0.0.0-20250813020053-3df242da2a4a
Expand Down
2 changes: 1 addition & 1 deletion examples/api-sync-roles/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module sync-roles

go 1.24.6
go 1.24.7

require (
github.com/gravitational/teleport/api v0.0.0-20250813020053-3df242da2a4a
Expand Down
2 changes: 1 addition & 1 deletion examples/desktop-registration/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module teleport-desktop-registration

go 1.24.6
go 1.24.7

require github.com/gravitational/teleport/api v0.0.0-20250813020053-3df242da2a4a

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

go 1.24.6
go 1.24.7

require github.com/gravitational/teleport/api v0.0.0-20250813020053-3df242da2a4a

Expand Down
2 changes: 1 addition & 1 deletion examples/service-discovery-api-client/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module register-app-service

go 1.24.6
go 1.24.7

require (
github.com/docker/docker v28.3.3+incompatible
Expand Down
2 changes: 1 addition & 1 deletion examples/teleport-usage/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module usage-script

go 1.24.6
go 1.24.7

require (
github.com/aws/aws-sdk-go-v2 v1.38.0
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/gravitational/teleport

go 1.24.6
go 1.24.7

require (
cloud.google.com/go/alloydb v1.18.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.6
go 1.24.7

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

go 1.24.6
go 1.24.7

require (
github.com/gravitational/teleport v0.0.0-00010101000000-000000000000
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.6
go 1.24.7

// TF provider dependencies
require (
Expand Down
Loading