From 3422e732707e4f9cab769f2306e8e76a6ea478a6 Mon Sep 17 00:00:00 2001 From: Wayne King <244781262+bdk38@users.noreply.github.com> Date: Sat, 7 Mar 2026 20:24:53 -0800 Subject: [PATCH] Update GitHub repository URL for HellPot MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This PR replaces references to the unmaintained repository `yunginnanet/HellPot` with the community-maintained `bdk38/HellPot`. Rationale: - `yunginnanet/HellPot` appears unmaintained; `bdk38/HellPot` is the community fork currently maintained. - Using the maintained repo helps ensure builds remain reproducible and security fixes/updates are available. What I changed: - Replaced occurrences of `yunginnanet/HellPot` → `bdk38/HellPot` in the Dockerfile. --- docker/hellpot/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/hellpot/Dockerfile b/docker/hellpot/Dockerfile index 4246f3fe..db3eb128 100644 --- a/docker/hellpot/Dockerfile +++ b/docker/hellpot/Dockerfile @@ -12,7 +12,7 @@ RUN apk --no-cache -U upgrade && \ # # Setup go, hellpot cd /root && \ - git clone https://github.com/yunginnanet/HellPot && \ + git clone https://github.com/bdk38/HellPot && \ cd HellPot && \ git checkout c48b70110148918255f93df4fa49c675ba5a5754 && \ sed -i 's#logFileName := "HellPot"#logFileName := "hellpot"#g' internal/config/logger.go && \