From b548e081ffa4130f17e0f541a302c6cf578b16fd Mon Sep 17 00:00:00 2001 From: Linda_pp Date: Sun, 7 Apr 2024 02:50:18 +0900 Subject: [PATCH] fix(doc): Update `@v2` to `@v3` in README.md --- README.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 856dfebd..cf13c146 100644 --- a/README.md +++ b/README.md @@ -91,7 +91,7 @@ jobs: fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod - name: Setup Hugo - uses: peaceiris/actions-hugo@v2 + uses: peaceiris/actions-hugo@v3 with: hugo-version: '0.119.0' # extended: true @@ -121,7 +121,7 @@ Set `extended: true` to use a Hugo extended version. ```yaml - name: Setup Hugo - uses: peaceiris/actions-hugo@v2 + uses: peaceiris/actions-hugo@v3 with: hugo-version: '0.119.0' extended: true @@ -133,7 +133,7 @@ Set `hugo-version: 'latest'` to use the latest version of Hugo. ```yaml - name: Setup Hugo - uses: peaceiris/actions-hugo@v2 + uses: peaceiris/actions-hugo@v3 with: hugo-version: 'latest' ``` @@ -190,7 +190,7 @@ Next, add a step to read a Hugo version from the `.env` file. echo "HUGO_VERSION=${HUGO_VERSION}" >> "${GITHUB_OUTPUT}" - name: Setup Hugo - uses: peaceiris/actions-hugo@v2 + uses: peaceiris/actions-hugo@v3 with: hugo-version: '${{ steps.hugo-version.outputs.HUGO_VERSION }}' extended: true @@ -256,7 +256,7 @@ jobs: fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod - name: Setup Hugo - uses: peaceiris/actions-hugo@v2 + uses: peaceiris/actions-hugo@v3 with: hugo-version: '0.119.0' extended: true @@ -310,7 +310,7 @@ jobs: fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod - name: Setup Hugo - uses: peaceiris/actions-hugo@v2 + uses: peaceiris/actions-hugo@v3 with: hugo-version: '0.119.0' extended: true @@ -364,7 +364,7 @@ jobs: run: git config core.quotePath false - name: Setup Hugo - uses: peaceiris/actions-hugo@v2 + uses: peaceiris/actions-hugo@v3 with: hugo-version: '0.119.0' ```