Skip to content

Commit 67a7d2a

Browse files
authored
fix deploy (#170)
1 parent c26f0bb commit 67a7d2a

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/build.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,15 @@ jobs:
1414
concurrency:
1515
group: ${{ github.workflow }}-${{ github.ref }}
1616
steps:
17-
- uses: actions/checkout@v3
17+
- uses: actions/checkout@v4
1818

1919
- name: Setup Node
20-
uses: actions/setup-node@v3
20+
uses: actions/setup-node@v4
2121
with:
22-
node-version: '16'
22+
node-version: '18'
2323

2424
- name: Cache dependencies
25-
uses: actions/cache@v3
25+
uses: actions/cache@v4
2626
with:
2727
path: ~/.npm
2828
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
@@ -35,7 +35,7 @@ jobs:
3535
- run: cp release/robo.phar ./docs/.vitepress/dist
3636

3737
- name: Deploy
38-
uses: peaceiris/actions-gh-pages@v3
38+
uses: peaceiris/actions-gh-pages@v4
3939
if: ${{ github.ref == 'refs/heads/main' }}
4040
with:
4141
github_token: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)