From e44d589a352e2a9951e6b360a5566fc17691ad5d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 29 May 2026 11:01:33 +0000 Subject: [PATCH 1/2] Bump node in the docker-images group across 1 directory Bumps the docker-images group with 1 update in the / directory: node. Updates `node` from 18-alpine to 26-alpine --- updated-dependencies: - dependency-name: node dependency-version: 26-alpine dependency-type: direct:production dependency-group: docker-images ... Signed-off-by: dependabot[bot] --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index d609da8..d7ea9f6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM node:18-alpine AS build +FROM node:26-alpine AS build ARG GITHUB_USERNAME_TOKEN WORKDIR /build-website ADD https://github.com/gohugoio/hugo/releases/download/v0.162.1/hugo_0.162.1_Linux-64bit.tar.gz hugo.tar.gz From a85a451b143829f560e03f93e59c6352ebbb0f3d Mon Sep 17 00:00:00 2001 From: Ihor Aleksandrychiev Date: Fri, 29 May 2026 14:57:00 +0300 Subject: [PATCH 2/2] Fixed Docker build for Hugo 0.162+ Adjusted security.allowContent to allo html Signed-off-by: Ihor Aleksandrychiev --- config.toml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/config.toml b/config.toml index 109133c..0c36b34 100644 --- a/config.toml +++ b/config.toml @@ -26,6 +26,11 @@ baseUrl = "https://build.cfengine.com" [markup.highlight] noClasses = false +# Hugo 0.162+ blocks text/html content files by default +# so explicitly allow the content media types we use +[security] +allowContent = ['^text/(html|markdown|org)$'] + [params.gitProviders.repositoryLinkTemplates] "github.com" = "%s/tree/%s/%s" "gitlab.com" = "%s/-/tree/%s/%s"