From e1fa18bf81a03d5660d91e3a57524be89f5080e1 Mon Sep 17 00:00:00 2001 From: etzngr <43846023+etzngr@users.noreply.github.com> Date: Sat, 16 Mar 2024 01:25:39 +0100 Subject: [PATCH] Update versions in GitHub hosting example --- .../en/hosting-and-deployment/hosting-on-github/index.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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 a1dd7700a..7782f947f 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.123.7 + HUGO_VERSION: 0.123.8 steps: - name: Install Hugo CLI run: | @@ -126,7 +126,7 @@ jobs: --minify \ --baseURL "${{ steps.pages.outputs.base_url }}/" - name: Upload artifact - uses: actions/upload-pages-artifact@v2 + uses: actions/upload-pages-artifact@v3 with: path: ./public @@ -140,7 +140,7 @@ jobs: steps: - name: Deploy to GitHub Pages id: deployment - uses: actions/deploy-pages@v3 + uses: actions/deploy-pages@v4 {{< /code >}} Step 7