Skip to content

Commit 1d6a72b

Browse files
committed
WIP, updated build actions to latest versions
1 parent e572465 commit 1d6a72b

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/deploy-website.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ jobs:
1010
name: Deploy to GitHub Pages
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v2
14-
- uses: actions/setup-node@v3
13+
- uses: actions/checkout@v3
14+
- uses: actions/setup-node@v4
1515
with:
1616
node-version: 18
1717
cache: yarn
@@ -22,7 +22,7 @@ jobs:
2222
run: yarn build
2323

2424
- name: Deploy to GitHub Pages
25-
uses: peaceiris/actions-gh-pages@v3
25+
uses: peaceiris/actions-gh-pages@v4
2626
with:
2727
github_token: ${{ secrets.BOT_DEPLOYMENT_TOKEN }}
2828
publish_dir: ./build

.github/workflows/pr-build.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ jobs:
1212
name: Test deployment
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions/checkout@v2
16-
- uses: actions/setup-node@v3
15+
- uses: actions/checkout@v3
16+
- uses: actions/setup-node@v4
1717
with:
1818
node-version: 18
1919
cache: yarn

0 commit comments

Comments
 (0)