Skip to content

Commit

Permalink
Update all
Browse files Browse the repository at this point in the history
  • Loading branch information
xuwei-k committed Apr 27, 2024
1 parent 1e7a378 commit f582eb5
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 16 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ jobs:
strategy:
fail-fast: false
steps:
- uses: actions/checkout@v2.3.4
- uses: olafurpg/setup-scala@v10
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
java-version: "[email protected]"
- uses: coursier/cache-action@v6
java-version: 8
distribution: temurin
- run: sbt -v scalafmtSbtCheck scalafmtCheckAll "+ scalapropsMagnoliaJVM/test" "+ scalapropsMagnoliaJS/test"
6 changes: 3 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ val tagName = Def.setting {
val tagOrHash = Def.setting {
if (isSnapshot.value) gitHash() else tagName.value
}
val Scala212 = "2.12.13"
val Scala213 = "2.13.5"
val Scala212 = "2.12.19"
val Scala213 = "2.13.13"
val unusedWarnings = Seq("-Ywarn-unused")

lazy val commonSettings = nocomma {
Expand Down Expand Up @@ -107,7 +107,7 @@ lazy val scalapropsMagnolia = crossProject(JVMPlatform, JSPlatform)
Nil
}
}
scalapropsVersion := "0.8.2"
scalapropsVersion := "0.9.1"
libraryDependencies ++= Seq(
"com.propensive" %%% "magnolia" % "0.14.5",
"com.github.scalaprops" %%% "scalaprops-gen" % scalapropsVersion.value,
Expand Down
2 changes: 1 addition & 1 deletion project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version=1.5.1
sbt.version=1.9.9
16 changes: 8 additions & 8 deletions project/plugin.sbt
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.4.2")
addSbtPlugin("com.github.scalaprops" % "sbt-scalaprops" % "0.4.1")
addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "3.9.7")
addSbtPlugin("com.github.sbt" % "sbt-release" % "1.0.15")
addSbtPlugin("com.github.sbt" % "sbt-pgp" % "2.1.2")
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.5.1")
addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "1.0.0")
addSbtPlugin("com.eed3si9n" % "sbt-nocomma" % "0.1.0")
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.2")
addSbtPlugin("com.github.scalaprops" % "sbt-scalaprops" % "0.5.0")
addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "3.9.21")
addSbtPlugin("com.github.sbt" % "sbt-release" % "1.4.0")
addSbtPlugin("com.github.sbt" % "sbt-pgp" % "2.2.1")
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.16.0")
addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "1.3.2")
addSbtPlugin("com.eed3si9n" % "sbt-nocomma" % "0.1.1")

scalacOptions ++= Seq(
"-deprecation",
Expand Down

0 comments on commit f582eb5

Please sign in to comment.