Skip to content

Commit f17950c

Browse files
committed
Update deps
1 parent 24b01ec commit f17950c

6 files changed

Lines changed: 259 additions & 356 deletions

File tree

.github/workflows/hugo.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ jobs:
1818
build:
1919
runs-on: ubuntu-latest
2020
env:
21-
DART_SASS_VERSION: 1.93.3
22-
GO_VERSION: 1.25.4
23-
HUGO_VERSION: 0.152.2
24-
NODE_VERSION: 24.11.0
21+
DART_SASS_VERSION: 1.97.1
22+
GO_VERSION: 1.25.5
23+
HUGO_VERSION: 0.153.3
24+
NODE_VERSION: 24.12.0
2525
TZ: Europe/Oslo
2626
outputs:
2727
pages_base_url: ${{ steps.pages.outputs.base_url }}
@@ -55,10 +55,10 @@ jobs:
5555
echo "${HOME}/.local/dart-sass" >> "${GITHUB_PATH}"
5656
- name: Install Hugo
5757
run: |
58-
curl -sLJO "https://github.com/gohugoio/hugo/releases/download/v${HUGO_VERSION}/hugo_extended_${HUGO_VERSION}_linux-amd64.tar.gz"
58+
curl -sLJO "https://github.com/gohugoio/hugo/releases/download/v${HUGO_VERSION}/hugo_${HUGO_VERSION}_linux-amd64.tar.gz"
5959
mkdir "${HOME}/.local/hugo"
60-
tar -C "${HOME}/.local/hugo" -xf "hugo_extended_${HUGO_VERSION}_linux-amd64.tar.gz"
61-
rm "hugo_extended_${HUGO_VERSION}_linux-amd64.tar.gz"
60+
tar -C "${HOME}/.local/hugo" -xf "hugo_${HUGO_VERSION}_linux-amd64.tar.gz"
61+
rm "hugo_${HUGO_VERSION}_linux-amd64.tar.gz"
6262
echo "${HOME}/.local/hugo" >> "${GITHUB_PATH}"
6363
- name: Verify installations
6464
run: |

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ This site:
88
1. Transpiles Sass to CSS using Dart Sass
99
1. Performs vendor prefixing of CSS rules using the postcss, postcss-cli, and autoprefixer Node.js packages
1010
1. Processes CSS files using the tailwindcss and @tailwindcss-cli Node.js packages
11-
1. Encodes images to the WebP format to verify that we're using Hugo's extended edition
11+
1. Encodes images to the WebP format
1212
1. Includes a content file named hugö.md to verify that the Git `core.quotepath` setting is `false` [^1]
1313

1414
[^1]: See [issue #9810](https://github.com/gohugoio/hugo/issues/9810). Git's `core.quotepath` setting is `false` if `/tests/hugö` has a non-zero "last modified" date.

content/tests/webp.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,3 @@ summary: This page tests conversion to the WebP image format.
44
date: 2025-04-22T22:58:38-07:00
55
weight: 40
66
---
7-
The build will fail if not using Hugo's extended edition.

hugo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ enableGitInfo = true
1515
# -----------------------------------------------------------------------------
1616

1717
[markup.goldmark.renderHooks.image]
18-
enableDefault = true
18+
useEmbedded = 'always'
1919

2020
[markup.goldmark.renderHooks.link]
21-
enableDefault = true
21+
useEmbedded = 'always'
2222

2323
# -----------------------------------------------------------------------------
2424
# Menus

layouts/_partials/footer.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
<p>Built with Hugo v{{ hugo.Version }} on {{ now.Format "2 Jan 2006 at 3:04:05 PM MST" }}.</p>
1+
<p>Built with Hugo v{{ hugo.Version }} {{ if hugo.IsExtended }} extended {{ end }} on {{ now.Format "2 Jan 2006 at 3:04:05 PM MST" }}.</p>

0 commit comments

Comments
 (0)