summaryrefslogtreecommitdiffstats
path: root/docs/content/en/hosting-and-deployment
diff options
context:
space:
mode:
Diffstat (limited to 'docs/content/en/hosting-and-deployment')
-rw-r--r--docs/content/en/hosting-and-deployment/hosting-on-github/index.md6
-rw-r--r--docs/content/en/hosting-and-deployment/hosting-on-gitlab.md4
-rw-r--r--docs/content/en/hosting-and-deployment/hosting-on-netlify.md4
3 files changed, 7 insertions, 7 deletions
diff --git a/docs/content/en/hosting-and-deployment/hosting-on-github/index.md b/docs/content/en/hosting-and-deployment/hosting-on-github/index.md
index f41250279..24bd31a25 100644
--- a/docs/content/en/hosting-and-deployment/hosting-on-github/index.md
+++ b/docs/content/en/hosting-and-deployment/hosting-on-github/index.md
@@ -99,7 +99,7 @@ jobs:
build:
runs-on: ubuntu-latest
env:
- HUGO_VERSION: 0.120.2
+ HUGO_VERSION: 0.121.0
steps:
- name: Install Hugo CLI
run: |
@@ -114,7 +114,7 @@ jobs:
fetch-depth: 0
- name: Setup Pages
id: pages
- uses: actions/configure-pages@v3
+ uses: actions/configure-pages@v4
- name: Install Node.js dependencies
run: "[[ -f package-lock.json || -f npm-shrinkwrap.json ]] && npm ci || true"
- name: Build with Hugo
@@ -142,7 +142,7 @@ jobs:
steps:
- name: Deploy to GitHub Pages
id: deployment
- uses: actions/deploy-pages@v2
+ uses: actions/deploy-pages@v3
{{< /code >}}
Step 7
diff --git a/docs/content/en/hosting-and-deployment/hosting-on-gitlab.md b/docs/content/en/hosting-and-deployment/hosting-on-gitlab.md
index dce306253..74b1fa154 100644
--- a/docs/content/en/hosting-and-deployment/hosting-on-gitlab.md
+++ b/docs/content/en/hosting-and-deployment/hosting-on-gitlab.md
@@ -27,8 +27,8 @@ 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.64.1
- HUGO_VERSION: 0.115.4
+ DART_SASS_VERSION: 1.69.5
+ HUGO_VERSION: 0.121.0
NODE_VERSION: 20.x
GIT_DEPTH: 0
GIT_STRATEGY: clone
diff --git a/docs/content/en/hosting-and-deployment/hosting-on-netlify.md b/docs/content/en/hosting-and-deployment/hosting-on-netlify.md
index 9b01f4cd8..ac6202700 100644
--- a/docs/content/en/hosting-and-deployment/hosting-on-netlify.md
+++ b/docs/content/en/hosting-and-deployment/hosting-on-netlify.md
@@ -57,14 +57,14 @@ For production:
{{< code file=netlify.toml >}}
[context.production.environment]
- HUGO_VERSION = "0.115.4"
+ HUGO_VERSION = "0.121.0"
{{< /code >}}
For testing:
{{< code file=netlify.toml >}}
[context.deploy-preview.environment]
- HUGO_VERSION = "0.115.4"
+ HUGO_VERSION = "0.121.0"
{{< /code >}}
The Netlify configuration file can be a little hard to understand and get right for the different environment, and you may get some inspiration and tips from this site's `netlify.toml`: