From 722da91f15de4cbced22c0ca31050590eca45cf4 Mon Sep 17 00:00:00 2001 From: Andreas Deininger Date: Mon, 5 May 2025 17:20:04 +0200 Subject: [PATCH] content: Fix GO_VERSION in Netlify hosting example --- content/en/functions/css/Sass.md | 8 ++++---- content/en/functions/resources/FromString.md | 6 +++--- content/en/host-and-deploy/host-on-aws-amplify/index.md | 6 +++--- content/en/host-and-deploy/host-on-github-pages/index.md | 2 +- content/en/host-and-deploy/host-on-gitlab-pages.md | 2 +- content/en/host-and-deploy/host-on-netlify/index.md | 8 ++++---- 6 files changed, 16 insertions(+), 16 deletions(-) diff --git a/content/en/functions/css/Sass.md b/content/en/functions/css/Sass.md index 6f9a68de0..150d22e43 100644 --- a/content/en/functions/css/Sass.md +++ b/content/en/functions/css/Sass.md @@ -141,8 +141,8 @@ To install Dart Sass for your builds on GitLab Pages, the `.gitlab-ci.yml` file ```yaml variables: - HUGO_VERSION: 0.144.2 - DART_SASS_VERSION: 1.85.0 + HUGO_VERSION: 0.147.1 + DART_SASS_VERSION: 1.87.0 GIT_DEPTH: 0 GIT_STRATEGY: clone GIT_SUBMODULE_STRATEGY: recursive @@ -175,8 +175,8 @@ To install Dart Sass for your builds on Netlify, the `netlify.toml` file should ```toml [build.environment] -HUGO_VERSION = "0.144.2" -DART_SASS_VERSION = "1.85.0" +HUGO_VERSION = "0.147.1" +DART_SASS_VERSION = "1.87.0" NODE_VERSION = "22" TZ = "America/Los_Angeles" diff --git a/content/en/functions/resources/FromString.md b/content/en/functions/resources/FromString.md index 4cd04f609..a1ce43ae8 100644 --- a/content/en/functions/resources/FromString.md +++ b/content/en/functions/resources/FromString.md @@ -22,9 +22,9 @@ Let's say you need to publish a file named "site.json" in the root of your `publ ```json { - "build_date": "2025-01-16T19:14:41-08:00", - "hugo_version": "0.141.0", - "last_modified": "2025-01-16T19:14:46-08:00" + "build_date": "2025-05-03T19:14:41-08:00", + "hugo_version": "0.147.1", + "last_modified": "2025-05-03T19:14:46-08:00" } ``` diff --git a/content/en/host-and-deploy/host-on-aws-amplify/index.md b/content/en/host-and-deploy/host-on-aws-amplify/index.md index aadb89116..e66b4d85e 100644 --- a/content/en/host-and-deploy/host-on-aws-amplify/index.md +++ b/content/en/host-and-deploy/host-on-aws-amplify/index.md @@ -44,9 +44,9 @@ version: 1 env: variables: # Application versions - DART_SASS_VERSION: 1.85.0 - GO_VERSION: 1.23.3 - HUGO_VERSION: 0.144.2 + DART_SASS_VERSION: 1.87.0 + GO_VERSION: 1.24.2 + HUGO_VERSION: 0.147.1 # Time zone TZ: America/Los_Angeles # Cache diff --git a/content/en/host-and-deploy/host-on-github-pages/index.md b/content/en/host-and-deploy/host-on-github-pages/index.md index 7c3201099..9cd5da1e6 100644 --- a/content/en/host-and-deploy/host-on-github-pages/index.md +++ b/content/en/host-and-deploy/host-on-github-pages/index.md @@ -107,7 +107,7 @@ jobs: build: runs-on: ubuntu-latest env: - HUGO_VERSION: 0.145.0 + HUGO_VERSION: 0.147.1 HUGO_ENVIRONMENT: production TZ: America/Los_Angeles steps: diff --git a/content/en/host-and-deploy/host-on-gitlab-pages.md b/content/en/host-and-deploy/host-on-gitlab-pages.md index 2a8c441e8..2b70a36c9 100644 --- a/content/en/host-and-deploy/host-on-gitlab-pages.md +++ b/content/en/host-and-deploy/host-on-gitlab-pages.md @@ -27,7 +27,7 @@ variables: GIT_DEPTH: 0 GIT_STRATEGY: clone GIT_SUBMODULE_STRATEGY: recursive - HUGO_VERSION: 0.146.7 + HUGO_VERSION: 0.147.1 NODE_VERSION: 22.x TZ: America/Los_Angeles image: diff --git a/content/en/host-and-deploy/host-on-netlify/index.md b/content/en/host-and-deploy/host-on-netlify/index.md index 4c89a6c1e..3c135ae68 100644 --- a/content/en/host-and-deploy/host-on-netlify/index.md +++ b/content/en/host-and-deploy/host-on-netlify/index.md @@ -113,8 +113,8 @@ Create a new file named netlify.toml in the root of your project directory. In i ```toml {file="netlify.toml"} [build.environment] -GO_VERSION = "1.24" -HUGO_VERSION = "0.146.7" +GO_VERSION = "1.24.2" +HUGO_VERSION = "0.147.1" NODE_VERSION = "22" TZ = "America/Los_Angeles" @@ -128,8 +128,8 @@ If your site requires Dart Sass to transpile Sass to CSS, the configuration file ```toml {file="netlify.toml"} [build.environment] DART_SASS_VERSION = "1.87.0" -GO_VERSION = "1.24" -HUGO_VERSION = "0.146.7" +GO_VERSION = "1.24.2" +HUGO_VERSION = "0.147.1" NODE_VERSION = "22" TZ = "America/Los_Angeles"