Skip to content

Commit 3371d21

Browse files
committed
Upate Node.js, setup-node, and lockfile
1 parent 7fbe516 commit 3371d21

File tree

3 files changed

+665
-8
lines changed

3 files changed

+665
-8
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,11 +55,11 @@ jobs:
5555
~/Library/Caches/Coursier/v1
5656
key: ${{ runner.os }}-sbt-cache-v2-${{ hashFiles('**/*.sbt') }}-${{ hashFiles('project/build.properties') }}
5757

58-
- name: Setup NodeJS v14 LTS
58+
- name: Setup NodeJS v16 LTS
5959
if: matrix.ci == 'ciNode' || matrix.ci == 'ciJSDOMNodeJS'
60-
uses: actions/setup-node@v2.1.2
60+
uses: actions/setup-node@v3
6161
with:
62-
node-version: 14
62+
node-version: 16
6363

6464
- name: Install jsdom
6565
if: matrix.ci == 'ciJSDOMNodeJS'

build.sbt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,9 @@ ThisBuild / crossScalaVersions := Seq("2.11.12", "2.12.15", "2.13.7", "3.0.2")
4949

5050
ThisBuild / githubWorkflowBuildPreamble ++= Seq(
5151
WorkflowStep.Use(
52-
UseRef.Public("actions", "setup-node", "v2.1.2"),
53-
name = Some("Setup NodeJS v14 LTS"),
54-
params = Map("node-version" -> "14"),
52+
UseRef.Public("actions", "setup-node", "v3"),
53+
name = Some("Setup NodeJS v16 LTS"),
54+
params = Map("node-version" -> "16"),
5555
cond = Some("matrix.ci == 'ciNode' || matrix.ci == 'ciJSDOMNodeJS'")),
5656
WorkflowStep.Run(
5757
List("npm install"),

0 commit comments

Comments
 (0)