diff --git a/content/en/contribute/development.md b/content/en/contribute/development.md
index fe6dfcef0..a14c616ab 100644
--- a/content/en/contribute/development.md
+++ b/content/en/contribute/development.md
@@ -158,7 +158,7 @@ CGO_ENABLED=1 go install -tags extended github.com/gohugoio/hugo@latest
To build and install a specific release:
```sh
-CGO_ENABLED=1 go install -tags extended github.com/gohugoio/hugo@v0.124.0
+CGO_ENABLED=1 go install -tags extended github.com/gohugoio/hugo@v0.125.4
```
To build and install at the latest commit on the master branch:
diff --git a/content/en/functions/hugo/Generator.md b/content/en/functions/hugo/Generator.md
index bc2c14cdf..41de0cf03 100644
--- a/content/en/functions/hugo/Generator.md
+++ b/content/en/functions/hugo/Generator.md
@@ -11,5 +11,5 @@ action:
---
```go-html-template
-{{ hugo.Generator }} →
+{{ hugo.Generator }} →
```
diff --git a/content/en/functions/hugo/Version.md b/content/en/functions/hugo/Version.md
index 52f81883a..5afc62026 100644
--- a/content/en/functions/hugo/Version.md
+++ b/content/en/functions/hugo/Version.md
@@ -11,5 +11,5 @@ action:
---
```go-html-template
-{{ hugo.Version }} → 0.124.0
+{{ hugo.Version }} → 0.125.4
```
diff --git a/content/en/functions/resources/FromString.md b/content/en/functions/resources/FromString.md
index 108dd6eae..6f742e029 100644
--- a/content/en/functions/resources/FromString.md
+++ b/content/en/functions/resources/FromString.md
@@ -24,7 +24,7 @@ Let's say you need to publish a file named "site.json" in the root of your publi
```json
{
"build_date": "2024-02-19T12:27:05-08:00",
- "hugo_version": "0.124.0",
+ "hugo_version": "0.125.4",
"last_modified": "2024-02-19T12:01:42-08:00"
}
```
diff --git a/content/en/functions/resources/ToCSS.md b/content/en/functions/resources/ToCSS.md
index fe7108b64..39b92add1 100644
--- a/content/en/functions/resources/ToCSS.md
+++ b/content/en/functions/resources/ToCSS.md
@@ -139,7 +139,7 @@ To install Dart Sass for your builds on GitLab Pages, the `.gitlab-ci.yml` file
```yaml
variables:
- HUGO_VERSION: 0.124.0
+ HUGO_VERSION: 0.125.4
DART_SASS_VERSION: 1.72.0
GIT_DEPTH: 0
GIT_STRATEGY: clone
@@ -173,7 +173,7 @@ To install Dart Sass for your builds on Netlify, the `netlify.toml` file should
```toml
[build.environment]
-HUGO_VERSION = "0.124.0"
+HUGO_VERSION = "0.125.4"
DART_SASS_VERSION = "1.72.0"
TZ = "America/Los_Angeles"
diff --git a/content/en/hosting-and-deployment/hosting-on-github/index.md b/content/en/hosting-and-deployment/hosting-on-github/index.md
index 007a6d49c..49b7c363b 100644
--- a/content/en/hosting-and-deployment/hosting-on-github/index.md
+++ b/content/en/hosting-and-deployment/hosting-on-github/index.md
@@ -97,7 +97,7 @@ jobs:
build:
runs-on: ubuntu-latest
env:
- HUGO_VERSION: 0.124.0
+ HUGO_VERSION: 0.125.4
steps:
- name: Install Hugo CLI
run: |
@@ -120,6 +120,7 @@ jobs:
# For maximum backward compatibility with Hugo modules
HUGO_ENVIRONMENT: production
HUGO_ENV: production
+ TZ: America/Los_Angeles
run: |
hugo \
--gc \
diff --git a/content/en/hosting-and-deployment/hosting-on-gitlab.md b/content/en/hosting-and-deployment/hosting-on-gitlab.md
index 0142feec0..6c1091787 100644
--- a/content/en/hosting-and-deployment/hosting-on-gitlab.md
+++ b/content/en/hosting-and-deployment/hosting-on-gitlab.md
@@ -28,7 +28,7 @@ Define your [CI/CD](https://docs.gitlab.com/ee/ci/quick_start/) jobs by creating
{{< code file=.gitlab-ci.yml copy=true >}}
variables:
DART_SASS_VERSION: 1.72.0
- HUGO_VERSION: 0.124.0
+ HUGO_VERSION: 0.125.4
NODE_VERSION: 20.x
GIT_DEPTH: 0
GIT_STRATEGY: clone
diff --git a/content/en/hosting-and-deployment/hosting-on-netlify/index.md b/content/en/hosting-and-deployment/hosting-on-netlify/index.md
index 73949c97e..6b19deeb2 100644
--- a/content/en/hosting-and-deployment/hosting-on-netlify/index.md
+++ b/content/en/hosting-and-deployment/hosting-on-netlify/index.md
@@ -101,7 +101,7 @@ Create a new file named netlify.toml in the root of your project directory. In i
{{< code file=netlify.toml >}}
[build.environment]
-HUGO_VERSION = "0.124.0"
+HUGO_VERSION = "0.125.4"
TZ = "America/Los_Angeles"
[build]
@@ -113,7 +113,7 @@ If your site requires Dart Sass to transpile Sass to CSS, the configuration file
{{< code file=netlify.toml >}}
[build.environment]
-HUGO_VERSION = "0.124.0"
+HUGO_VERSION = "0.125.4"
DART_SASS_VERSION = "1.72.0"
TZ = "America/Los_Angeles"
diff --git a/content/en/hugo-pipes/transpile-sass-to-css.md b/content/en/hugo-pipes/transpile-sass-to-css.md
index a7eaea14a..480a1c549 100644
--- a/content/en/hugo-pipes/transpile-sass-to-css.md
+++ b/content/en/hugo-pipes/transpile-sass-to-css.md
@@ -136,7 +136,7 @@ To install Dart Sass for your builds on GitLab Pages, the `.gitlab-ci.yml` file
```yaml
variables:
- HUGO_VERSION: 0.124.0
+ HUGO_VERSION: 0.125.4
DART_SASS_VERSION: 1.72.0
GIT_DEPTH: 0
GIT_STRATEGY: clone