Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ ARG ALPINE_VERSION=3.23
ARG GO_VERSION=1.26
ARG HTMLTEST_VERSION=0.17.0
ARG VALE_VERSION=3.11.2
ARG HUGO_VERSION=0.156.0
ARG NODE_VERSION=22
ARG HUGO_VERSION=0.158.0
ARG NODE_VERSION=24
ARG PAGEFIND_VERSION=1.5.0-beta.1

# base defines the generic base stage
Expand Down
2 changes: 1 addition & 1 deletion content/manuals/accounts/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ grid:
- title: Set up two-factor authentication
description: Add an extra layer of authentication to your Docker account.
link: /security/2fa/
icon: phonelink_lock
icon: mobile_lock_portrait
- title: Deactivate an account
description: Learn how to deactivate a Docker user account.
link: /accounts/deactivate-user-account/
Expand Down
2 changes: 1 addition & 1 deletion content/manuals/security/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ grid_developers:
- title: Set up two-factor authentication
description: Add an extra layer of authentication to your Docker account.
link: /security/2fa/
icon: phonelink_lock
icon: mobile_lock_portrait
- title: Manage access tokens
description: Create personal access tokens as an alternative to your password.
icon: password
Expand Down
2 changes: 1 addition & 1 deletion docs_engineer.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# yaml-language-server: $schema=https://raw.githubusercontent.com/docker/docker-agent/refs/heads/main/cagent-schema.json
# yaml-language-server: $schema=https://raw.githubusercontent.com/docker/docker-agent/refs/heads/main/agent-schema.json
agents:
root:
model: opus
Expand Down
2 changes: 1 addition & 1 deletion layouts/_partials/content-default.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<div class="flex items-start justify-between">
<h1 data-pagefind-weight="10">{{ .Title | safeHTML }}</h1>
<div class="md-dropdown ml-auto hidden lg:block">
{{ partial "md-dropdown.html" . }}
{{ partialCached "md-dropdown.html" "-" "-" }}
</div>
</div>
<div class="block lg:hidden">
Expand Down
2 changes: 1 addition & 1 deletion layouts/_partials/head.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
{{- range .AlternativeOutputFormats -}}
<link rel="{{ .Rel }}" type="{{ .MediaType.Type }}" href="{{ .Permalink }}" />
{{ end -}}
{{ partial "utils/css.html" "-" }}
{{ partialCached "utils/css.html" "-" "-" }}
<link href="/pagefind/pagefind-component-ui.css" rel="stylesheet">
{{- if hugo.IsProduction -}}
<script
Expand Down
4 changes: 2 additions & 2 deletions layouts/_partials/md-dropdown.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@
class="bg-white dark:bg-gray-800 hover:bg-gray-50 dark:hover:bg-gray-700 flex cursor-pointer items-center gap-2 px-3 py-2 text-sm transition-colors whitespace-nowrap text-gray-900 dark:text-white"
>
<span class="icon-svg icon-sm">
{{ partial "icon" "content_copy" }}
{{ partialCached "icon" "content_copy" "content_copy" }}
</span>
<span class="icon-svg icon-sm hidden">
{{ partial "icon" "check_circle" }}
{{ partialCached "icon" "check_circle" "check_circle" }}
</span>
<span>Copy as Markdown</span>
</button>
Expand Down
2 changes: 1 addition & 1 deletion layouts/baseof.html
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@

{{/* Load the YouTube player if the page embeds a YouTube video */}}
{{ with .Store.Get "youtube" }}
{{ partial "youtube-script.html" . }}
{{ partialCached "youtube-script.html" "-" "-" }}
{{ end }}
</body>
</html>
2 changes: 1 addition & 1 deletion layouts/cli.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<div class="flex items-start justify-between gap-4">
<h1>{{ .Title }}</h1>
<div class="md-dropdown ml-auto mr-4 hidden lg:block">
{{ partial "md-dropdown.html" . }}
{{ partialCached "md-dropdown.html" "-" "-" }}
</div>
</div>
<div class="overflow-x-auto">
Expand Down
4 changes: 2 additions & 2 deletions netlify.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
publish = "public"

[context.deploy-preview.environment]
NODE_VERSION = "22"
NODE_VERSION = "24"
NODE_ENV = "production"
HUGO_VERSION = "0.156.0"
HUGO_VERSION = "0.158.0"
HUGO_ENABLEGITINFO = "true"
HUGO_ENVIRONMENT = "preview"
SECRETS_SCAN_OMIT_PATHS = "public/contribute/file-conventions/index.html"
Expand Down
Loading
Loading