diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index ed771f37..5117b184 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -19,8 +19,10 @@ jobs: - name: Setup JVM uses: actions/setup-java@v3 with: - java-version: '11' + java-version: '17' distribution: 'adopt' + - name: Setup SBT + uses: sbt/setup-sbt@v1 - name: Tests run: sbt +test - name: Release diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index fe8383a9..fc2bfedb 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -18,11 +18,13 @@ jobs: - name: Setup Node.js uses: actions/setup-node@v3 with: - node-version: "18" + node-version: "22" - name: Setup JVM uses: actions/setup-java@v3 with: - java-version: '11' + java-version: '17' distribution: 'adopt' + - name: Setup SBT + uses: sbt/setup-sbt@v1 - name: Run tests run: sbt +test diff --git a/project/Versions.scala b/project/Versions.scala index b8e521f9..ff0988d3 100644 --- a/project/Versions.scala +++ b/project/Versions.scala @@ -1,6 +1,6 @@ object Versions { - val Scala_2_13 = "2.13.15" + val Scala_2_13 = "2.13.16" val Scala_3 = "3.3.3" diff --git a/project/build.properties b/project/build.properties index cbf878e7..fe69360b 100644 --- a/project/build.properties +++ b/project/build.properties @@ -1 +1 @@ -sbt.version = 1.10.3 +sbt.version = 1.10.7 diff --git a/project/plugins.sbt b/project/plugins.sbt index 02819ba1..ce9ce81e 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,4 +1,4 @@ -addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.16.0") +addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.18.1") addSbtPlugin("ch.epfl.scala" % "sbt-scalajs-bundler" % "0.21.1")