diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8291928..316d4f0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,7 +14,7 @@ jobs: - scala: '2.12' scala-version: 2.12.18 - scala: '2.13' - scala-version: 2.13.11 + scala-version: 2.13.12 - scala: '3' scala-version: 3.3.1 diff --git a/build.sbt b/build.sbt index 14be41f..de4cb1e 100644 --- a/build.sbt +++ b/build.sbt @@ -2,7 +2,7 @@ import ReleaseTransformations._ ThisBuild / organization := "net.ruippeixotog" -ThisBuild / scalaVersion := "2.13.11" +ThisBuild / scalaVersion := "2.13.12" lazy val core = (project in file("core")) .settings(commonSettings) @@ -21,7 +21,7 @@ lazy val bundle = (project in file("bundle")) lazy val commonSettings = Seq( // format: off - crossScalaVersions := Seq("2.12.18", "2.13.11", "3.3.1"), + crossScalaVersions := Seq("2.12.18", "2.13.12", "3.3.1"), libraryDependencies ++= Seq("org.specs2" %% "specs2-core" % "4.20.2"),