From 7c702df60e89e5326a61670ad4f66ba4acbf071e Mon Sep 17 00:00:00 2001 From: Didier Roche Date: Mon, 25 Sep 2023 12:00:14 +0200 Subject: [PATCH] Build with go 1.21.1 to avoid security vulnerability Ensure we are using the safe Go version as we are using parsing (even if we only do this in documentation generation). --- debian/control | 2 +- go.mod | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/debian/control b/debian/control index d6fb19f2b..e2567925a 100644 --- a/debian/control +++ b/debian/control @@ -5,7 +5,7 @@ Maintainer: Ubuntu Developers Build-Depends: debhelper-compat (= 13), dh-apport, dh-golang, - golang-go (>= 2:1.20~), + golang-go (>= 2:1.21.1~), libsmbclient-dev, libdbus-1-dev, libglib2.0-dev, diff --git a/go.mod b/go.mod index ec2fb0ef0..dbf1112c0 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/ubuntu/adsys -go 1.20 +go 1.21.1 require ( github.com/charmbracelet/bubbles v0.16.1