We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 68b5069 commit 8207eedCopy full SHA for 8207eed
1 file changed
.github/workflows/deploy.yml
@@ -32,7 +32,7 @@ jobs:
32
DEPLOY_BRANCH: gh-pages
33
steps:
34
- name: Checkout
35
- uses: actions/checkout@v3
+ uses: actions/checkout@v4
36
with:
37
submodules: recursive
38
@@ -43,6 +43,10 @@ jobs:
43
# Clone and checkout existing branch, or initialise with a new and empty branch
44
git clone --depth 5 --branch "${DEPLOY_BRANCH}" "https://github.com/${GITHUB_REPOSITORY}.git" . || git init -b "${DEPLOY_BRANCH}"
45
46
+ - uses: actions/setup-node@v4
47
+ with:
48
+ node-version: 20
49
+
50
- name: Install Node.js dependencies
51
run: npm ci
52
0 commit comments