From f95a96742ea4c975070a8fa0af1d6ff922a0dbd4 Mon Sep 17 00:00:00 2001 From: Stephen Rudolph Date: Tue, 12 May 2026 09:33:06 -0500 Subject: [PATCH 1/2] chore: Caddy install.sh dependency updates Only the Go version was strictly necessary due to https://github.com/golangci/golangci-lint/issues/6555, but bumping the others while here. Signed-off-by: Stephen Rudolph --- src/caddy/install.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/caddy/install.sh b/src/caddy/install.sh index d5d7f9357..fd47c6175 100755 --- a/src/caddy/install.sh +++ b/src/caddy/install.sh @@ -8,13 +8,13 @@ set -e # `ensure_nanolayer` is a bash function that will find any existing nanolayer installations, # and if missing - will download a temporary copy that automatically get deleted at the end # of the script -ensure_nanolayer nanolayer_location "v0.5.4" +ensure_nanolayer nanolayer_location "v0.5.6" $nanolayer_location \ install \ devcontainer-feature \ - "ghcr.io/devcontainers/features/go:1.1.3" \ + "ghcr.io/devcontainers/features/go:1.3.4" \ --option version="$GOLANGVERSION" @@ -22,7 +22,7 @@ $nanolayer_location \ $nanolayer_location \ install \ devcontainer-feature \ - "ghcr.io/devcontainers-extra/features/gh-release:1.0.25" \ + "ghcr.io/devcontainers-extra/features/gh-release:1.0.26" \ --option repo='caddyserver/caddy' --option binaryNames='caddy' --option version="$VERSION" From a075d8fc7dad82e20d6fddb1e79d14a99949e417 Mon Sep 17 00:00:00 2001 From: Stephen Rudolph Date: Tue, 12 May 2026 14:02:52 -0500 Subject: [PATCH 2/2] fix: updating the Caddy feature version because the dependencies were updated Signed-off-by: Stephen Rudolph --- src/caddy/devcontainer-feature.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/caddy/devcontainer-feature.json b/src/caddy/devcontainer-feature.json index e61553eb1..be9dd4712 100644 --- a/src/caddy/devcontainer-feature.json +++ b/src/caddy/devcontainer-feature.json @@ -1,6 +1,6 @@ { "id": "caddy", - "version": "1.0.10", + "version": "1.0.11", "name": "Caddy (via Github Releases)", "documentationURL": "http://github.com/devcontainers-extra/features/tree/main/src/caddy", "description": "Caddy is a powerful, enterprise-ready, open source web server with automatic HTTPS.",