-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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).
- Loading branch information
Showing
2 changed files
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ Maintainer: Ubuntu Developers <[email protected]> | |
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, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
module github.com/ubuntu/adsys | ||
|
||
go 1.20 | ||
go 1.21.1 | ||
|
||
require ( | ||
github.com/charmbracelet/bubbles v0.16.1 | ||
|