From ad19eb8424d7e3e0a5f9428c00aa8010c272bcaa Mon Sep 17 00:00:00 2001 From: Cathie Integra Date: Tue, 28 Jul 2026 21:56:26 +0200 Subject: [PATCH 1/2] Scripts: Install muffet v2 rather than the v1 module path --- scripts/dist/install-admin-tools.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/scripts/dist/install-admin-tools.sh b/scripts/dist/install-admin-tools.sh index a2d0ad0994c..343ec8f6e13 100755 --- a/scripts/dist/install-admin-tools.sh +++ b/scripts/dist/install-admin-tools.sh @@ -20,7 +20,9 @@ sudo GOBIN="/usr/local/bin" go install github.com/muesli/duf@latest sudo ln -sf /usr/local/bin/duf /usr/local/bin/df echo "Installing muffet, a tool for checking links..." -sudo GOBIN="/usr/local/bin" go install github.com/raviqqe/muffet@latest +# The module path must carry the major version: "muffet@latest" still resolves to the +# v1 line (v1.5.7), so only "/v2" installs a current release. +sudo GOBIN="/usr/local/bin" go install github.com/raviqqe/muffet/v2@latest echo "Installing petname to generate pronounceable names..." sudo GOBIN="/usr/local/bin" go install github.com/dustinkirkland/golang-petname/cmd/petname@latest From f77a860cbeff094eea6142d20ecc852c31d61af7 Mon Sep 17 00:00:00 2001 From: Cathie Integra Date: Wed, 29 Jul 2026 02:54:10 +0200 Subject: [PATCH 2/2] Docker: Pin ddns build image to Go 1.26.5 --- docker/ddns/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/ddns/Dockerfile b/docker/ddns/Dockerfile index 60220951840..1a0fffd3f42 100644 --- a/docker/ddns/Dockerfile +++ b/docker/ddns/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.22-alpine +FROM golang:1.26.5-alpine ENV DO_NOT_TRACK=true