From e8545ccaa35fa3f62b28864e14916d7b95d965b5 Mon Sep 17 00:00:00 2001 From: Arman Bilge Date: Wed, 16 Oct 2024 23:05:09 +0000 Subject: [PATCH] Rollback Node.js version --- .github/workflows/ci.yml | 4 ++-- build.sbt | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5b12a44..2e4c52a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -55,11 +55,11 @@ jobs: if: matrix.java == 'temurin@17' && steps.setup-java-temurin-17.outputs.cache-hit == 'false' run: sbt +update - - name: Setup NodeJS v22 LTS + - name: Setup NodeJS v20 LTS if: matrix.project == 'rootJS' uses: actions/setup-node@v4 with: - node-version: 22 + node-version: 20 cache: npm - if: matrix.project == 'rootJS' diff --git a/build.sbt b/build.sbt index bff2c31..610e47f 100644 --- a/build.sbt +++ b/build.sbt @@ -13,8 +13,8 @@ ThisBuild / tlJdkRelease := Some(8) ThisBuild / githubWorkflowBuildPreamble ++= Seq( WorkflowStep.Use( UseRef.Public("actions", "setup-node", "v4"), - name = Some("Setup NodeJS v22 LTS"), - params = Map("node-version" -> "22", "cache" -> "npm"), + name = Some("Setup NodeJS v20 LTS"), + params = Map("node-version" -> "20", "cache" -> "npm"), cond = Some("matrix.project == 'rootJS'"), ), WorkflowStep.Run(