From 29a24d980df47de622ad1feb21d772714ea7c262 Mon Sep 17 00:00:00 2001 From: denisonbarbosa Date: Wed, 4 Dec 2024 09:29:07 -0400 Subject: [PATCH] Sync Go versions declared in the project We have a mismatch between the versions listed in the project root and the tools/ directory. Let's keep it synced. --- go.mod | 4 +--- tools/go.mod | 4 ++-- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/go.mod b/go.mod index 54912fb40..f2a3eee25 100644 --- a/go.mod +++ b/go.mod @@ -1,8 +1,6 @@ module github.com/ubuntu/adsys -go 1.22.0 - -toolchain go1.22.7 +go 1.22.7 require ( github.com/charmbracelet/bubbles v0.20.0 diff --git a/tools/go.mod b/tools/go.mod index 5f83047c1..cc59841f3 100644 --- a/tools/go.mod +++ b/tools/go.mod @@ -1,8 +1,8 @@ module github.com/ubuntu/adsys/tools -go 1.22.1 +go 1.22.7 -toolchain go1.23.0 +toolchain go1.23.4 require ( github.com/golang/protobuf v1.5.4