diff --git a/.github/workflows/standard-workflow.yml b/.github/workflows/standard-workflow.yml index e19a9455..4802f82c 100644 --- a/.github/workflows/standard-workflow.yml +++ b/.github/workflows/standard-workflow.yml @@ -95,6 +95,7 @@ jobs: sbt "++ 2.13.3 test" sbt "++ 2.13.4 test" sbt "++ 2.13.5 test" + sbt "++ 2.13.6 test" test-213-2: runs-on: ubuntu-latest @@ -116,11 +117,11 @@ jobs: - name: Run tests run: | - sbt "++ 2.13.6 test" - sbt "++ 2.13.7 test" - sbt "++ 2.13.8 test" - sbt "++ 2.13.9 test" + sbt "++ 2.13.7 test" + sbt "++ 2.13.8 test" + sbt "++ 2.13.9 test" sbt "++ 2.13.10 test" + sbt "++ 2.13.11 test" test-sbt-plugin: runs-on: ubuntu-latest diff --git a/.scala-steward.conf b/.scala-steward.conf index 806cb809..1e6c18f7 100644 --- a/.scala-steward.conf +++ b/.scala-steward.conf @@ -2,7 +2,14 @@ updatePullRequests = "always" commits.message = "Scala-Steward: Update ${artifactName} from ${currentVersion} to ${nextVersion}" -buildRoots = [ ".", "examples/event-migration/", "examples/example-app/", "examples/akka-persistence-app/" ] +buildRoots = [ + ".", + "examples/akka-persistence-app/", + "examples/event-migration/", + "examples/example-app/", + "sbt-akka-serialization-helper/src/sbt-test/sbt-dumpschema/dependencies", + "sbt-akka-serialization-helper/src/sbt-test/sbt-dumpschema/simple", +] updates.pin = [ # * org.scala-lang.modules:scala-xml_2.12:2.1.0 (early-semver) is selected over 1.2.0 diff --git a/build.sbt b/build.sbt index be3ae9ea..9d43d761 100644 --- a/build.sbt +++ b/build.sbt @@ -23,7 +23,8 @@ lazy val testAgainstScalaVersions = "2.13.6", "2.13.7", "2.13.8", - "2.13.9") + "2.13.9", + "2.13.10") ThisBuild / scalaVersion := targetScalaVersions.head ThisBuild / organization := "org.virtuslab.ash" @@ -42,7 +43,7 @@ sonatypeProfileName := "org.virtuslab" Global / onChangedBuildSource := ReloadOnSourceChanges ThisBuild / semanticdbEnabled := true -ThisBuild / semanticdbVersion := "4.5.13" +ThisBuild / semanticdbVersion := "4.7.8" ThisBuild / scalafixDependencies += "com.github.liancheng" %% "organize-imports" % "0.6.0" lazy val commonSettings = Seq( diff --git a/examples/akka-cluster-app/build.sbt b/examples/akka-cluster-app/build.sbt index 84d67e83..9a2d749d 100644 --- a/examples/akka-cluster-app/build.sbt +++ b/examples/akka-cluster-app/build.sbt @@ -32,5 +32,5 @@ lazy val ashDependencies = lazy val logbackDependency = "ch.qos.logback" % "logback-classic" % logbackVersion ThisBuild / semanticdbEnabled := true -ThisBuild / semanticdbVersion := "4.5.13" +ThisBuild / semanticdbVersion := "4.7.8" ThisBuild / scalafixDependencies += "com.github.liancheng" %% "organize-imports" % "0.6.0" diff --git a/examples/akka-persistence-app/build.sbt b/examples/akka-persistence-app/build.sbt index d41f7cf0..82e7053a 100644 --- a/examples/akka-persistence-app/build.sbt +++ b/examples/akka-persistence-app/build.sbt @@ -71,5 +71,5 @@ libraryDependencies ++= Seq( AkkaSerializationHelperPlugin.circeAkkaSerializer) ThisBuild / semanticdbEnabled := true -ThisBuild / semanticdbVersion := "4.5.13" +ThisBuild / semanticdbVersion := "4.7.8" ThisBuild / scalafixDependencies += "com.github.liancheng" %% "organize-imports" % "0.6.0" diff --git a/examples/event-migration/build.sbt b/examples/event-migration/build.sbt index 0e4a9e78..5c4db250 100644 --- a/examples/event-migration/build.sbt +++ b/examples/event-migration/build.sbt @@ -26,6 +26,6 @@ libraryDependencies += "org.scalatest" %% "scalatest" % scalaTestVersion % Test scalacOptions += "-Ymacro-annotations" ThisBuild / semanticdbEnabled := true -ThisBuild / semanticdbVersion := "4.5.13" +ThisBuild / semanticdbVersion := "4.7.8" ThisBuild / scalafixDependencies += "com.github.liancheng" %% "organize-imports" % "0.6.0" scalacOptions += "-Ywarn-unused"