Skip to content

Commit 8207eed

Browse files
committed
ci(deploy): upgrade node to version 20
1 parent 68b5069 commit 8207eed

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/deploy.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
DEPLOY_BRANCH: gh-pages
3333
steps:
3434
- name: Checkout
35-
uses: actions/checkout@v3
35+
uses: actions/checkout@v4
3636
with:
3737
submodules: recursive
3838

@@ -43,6 +43,10 @@ jobs:
4343
# Clone and checkout existing branch, or initialise with a new and empty branch
4444
git clone --depth 5 --branch "${DEPLOY_BRANCH}" "https://github.com/${GITHUB_REPOSITORY}.git" . || git init -b "${DEPLOY_BRANCH}"
4545
46+
- uses: actions/setup-node@v4
47+
with:
48+
node-version: 20
49+
4650
- name: Install Node.js dependencies
4751
run: npm ci
4852

0 commit comments

Comments
 (0)