Skip to content

Commit

Permalink
ci(deploy): upgrade node to version 20
Browse files Browse the repository at this point in the history
  • Loading branch information
timmywil committed Dec 10, 2023
1 parent 68b5069 commit 8207eed
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
DEPLOY_BRANCH: gh-pages
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: recursive

Expand All @@ -43,6 +43,10 @@ jobs:
# Clone and checkout existing branch, or initialise with a new and empty branch
git clone --depth 5 --branch "${DEPLOY_BRANCH}" "https://github.com/${GITHUB_REPOSITORY}.git" . || git init -b "${DEPLOY_BRANCH}"
- uses: actions/setup-node@v4
with:
node-version: 20

- name: Install Node.js dependencies
run: npm ci

Expand Down

0 comments on commit 8207eed

Please sign in to comment.