From 4f1382a72988118c43891303833e16587070a725 Mon Sep 17 00:00:00 2001 From: Rune Soerensen Date: Sun, 15 Mar 2026 18:59:13 -0400 Subject: [PATCH 1/2] Remove unused `golangci-lint-1.16.0` inventory entry --- files.json | 4 ---- 1 file changed, 4 deletions(-) diff --git a/files.json b/files.json index 8c191186..e5d6e724 100644 --- a/files.json +++ b/files.json @@ -923,10 +923,6 @@ "SHA": "031f088e5d955bab8657ede27ad4e3bc5b7c1ba281f05f245bcc304f327c987a", "URL": "https://dl.google.com/go/go1.26.1.linux-amd64.tar.gz" }, - "golangci-lint-1.16.0-linux-amd64.tar.gz": { - "SHA": "5343fc3ffcbb9910925f4047ec3c9f2e9623dd56a72a17ac76fb2886abc0976b", - "URL": "https://github.com/golangci/golangci-lint/releases/download/v1.16.0/golangci-lint-1.16.0-linux-amd64.tar.gz" - }, "golangci-lint-1.20.0-linux-amd64.tar.gz": { "SHA": "5a638cba74fbfb6e11b9dce38e8caf3f18e998b6548118116d631ebcae3ebac5", "URL": "https://github.com/golangci/golangci-lint/releases/download/v1.20.0/golangci-lint-1.20.0-linux-amd64.tar.gz" From 90252144b8dfd5bae2b7e725fee27ca9b0cbe1a9 Mon Sep 17 00:00:00 2001 From: Rune Soerensen Date: Sun, 15 Mar 2026 18:55:24 -0400 Subject: [PATCH 2/2] Remove dead go1 logic from ensureGo Since Go 1.0 predates Go modules, which are now the only supported dependency management --- bin/compile | 3 --- 1 file changed, 3 deletions(-) diff --git a/bin/compile b/bin/compile index 2f9f0561..7f00399e 100755 --- a/bin/compile +++ b/bin/compile @@ -120,9 +120,6 @@ ensureGo() { goPath="${GO_CACHE_DIR}/${bGoVersion}/go" txt="Installing bootstrap ${bGoVersion}" ;; - go1) - goFile="go.go1.linux-amd64.tar.gz" - ;; *) goFile="${goVersion}.linux-amd64.tar.gz" ;;