From 92c4e28647beee441463ec4b58aa58ad5b5b960a Mon Sep 17 00:00:00 2001 From: George Karr Date: Tue, 30 Jun 2026 13:50:26 -0500 Subject: [PATCH] Include new tools in update-go and fix dibble (#48461) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## Summary by CodeRabbit * **Chores** * Updated the project’s Go version settings to keep tooling in sync across all relevant components. * Running the standard Go update workflow will now apply version updates to an additional part of the codebase. --- Makefile | 3 ++- tools/dibble/go.mod | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index de9019db1a..cb368a1152 100644 --- a/Makefile +++ b/Makefile @@ -1049,7 +1049,8 @@ UPDATE_GO_MODS := \ ./tools/github-manage/go.mod \ ./tools/qacheck/go.mod \ ./third_party/goval-dictionary/go.mod \ - ./tools/fleet-mcp/go.mod + ./tools/fleet-mcp/go.mod \ + ./tools/dibble/go.mod update-go: @test $(version) || (echo "Mising 'version' argument, usage: 'make update-go version=1.24.4'" ; exit 1) @for dockerfile in $(UPDATE_GO_DOCKERFILES) ; do \ diff --git a/tools/dibble/go.mod b/tools/dibble/go.mod index c521850234..8f063eac4e 100644 --- a/tools/dibble/go.mod +++ b/tools/dibble/go.mod @@ -1,6 +1,6 @@ module github.com/fleetdm/fleet/v4/tools/dibble -go 1.26.3 +go 1.26.4 // The parent fleet module is included so we can enumerate every activity // type for the `dibble activities` seeder. Pinned to the local checkout via