diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 6c27a7b..bd28b97 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -16,6 +16,8 @@ jobs: with: java-version: '11' distribution: 'adopt' + - name: Setup SBT + uses: sbt/setup-sbt@v1 - name: Tests run: sbt "project domtypesJVM" test "project domtypesJS" +test - name: Release diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index a74f951..b1ad1b4 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -21,5 +21,7 @@ jobs: with: java-version: '11' distribution: 'adopt' + - name: Setup SBT + uses: sbt/setup-sbt@v1 - name: Run tests run: sbt "project domtypesJVM" test "project domtypesJS" +test diff --git a/project/Versions.scala b/project/Versions.scala index e2f8628..2752b61 100644 --- a/project/Versions.scala +++ b/project/Versions.scala @@ -1,8 +1,8 @@ object Versions { - val Scala_2_12 = "2.12.17" + val Scala_2_12 = "2.12.20" - val Scala_2_13 = "2.13.14" + val Scala_2_13 = "2.13.16" val Scala_3 = "3.3.3" diff --git a/project/build.properties b/project/build.properties index b19d4e1..fe69360 100644 --- a/project/build.properties +++ b/project/build.properties @@ -1 +1 @@ -sbt.version = 1.9.7 +sbt.version = 1.10.7 diff --git a/project/plugins.sbt b/project/plugins.sbt index 6e4d925..b0bab36 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,6 +1,6 @@ logLevel := Level.Warn -addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.16.0") +addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.18.1") addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "1.2.0")