We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 13bf22c commit 697cbb2Copy full SHA for 697cbb2
1 file changed
.github/workflows/gh-pages.yml
@@ -14,13 +14,17 @@ jobs:
14
contents: write
15
runs-on: ubuntu-22.04
16
steps:
17
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
18
with:
19
submodules: true # Fetch Hugo themes (true OR recursive)
20
fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod
21
22
+ - uses: actions/setup-node@v4
23
+ with:
24
+ node-version: 20
25
+
26
- name: Setup Hugo
- uses: peaceiris/actions-hugo@v2
27
+ uses: peaceiris/actions-hugo@v3
28
29
hugo-version: 0.121.2
30
extended: true
@@ -32,7 +36,7 @@ jobs:
32
36
run: hugo --minify
33
37
34
38
- name: Deploy
35
- uses: peaceiris/actions-gh-pages@v3
39
+ uses: peaceiris/actions-gh-pages@v4
40
if: github.ref == 'refs/heads/main'
41
42
github_token: ${{ secrets.GITHUB_TOKEN }}
0 commit comments