Skip to content

Commit

Permalink
Bump semanticdbVersion
Browse files Browse the repository at this point in the history
  • Loading branch information
PawelLipski committed Jun 9, 2023
1 parent 92649e9 commit 512d4b2
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 10 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/standard-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down
9 changes: 8 additions & 1 deletion .scala-steward.conf
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
5 changes: 3 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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(
Expand Down
2 changes: 1 addition & 1 deletion examples/akka-cluster-app/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -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"
2 changes: 1 addition & 1 deletion examples/akka-persistence-app/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -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"
2 changes: 1 addition & 1 deletion examples/event-migration/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -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"

0 comments on commit 512d4b2

Please sign in to comment.