Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
cfernandescaesars committed Mar 29, 2023
1 parent b1d2a6f commit a82119d
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
run: sbt ++${{ matrix.scala }} test

- name: Coverage Coveralls
if: ${{ matrix.scala != '3.2.1' }}
if: ${{ matrix.scala != '3.2.2' }}
env:
COVERALLS_REPO_TOKEN: ${{ secrets.GITHUB_TOKEN }}
COVERALLS_FLAG_NAME: Scala ${{ matrix.scala }}
Expand Down
8 changes: 4 additions & 4 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ inThisBuild {
githubWorkflowBuild += WorkflowStep.Sbt(
name = Option("Coverage Coveralls"),
commands = List("clean", "coverage", "test", "coverageReport", "coverageAggregate", "coveralls"),
cond = Some("${{ matrix.scala != '3.2.1' }}"), // Disable coverage for Scala 3.2.1
cond = Some("${{ matrix.scala != '3.2.2' }}"),
env = Map(
"COVERALLS_REPO_TOKEN" -> "${{ secrets.GITHUB_TOKEN }}",
"COVERALLS_FLAG_NAME" -> "Scala ${{ matrix.scala }}"
Expand All @@ -34,10 +34,10 @@ lazy val root =
val datastaxV = "4.15.0"

val zio = "dev.zio"
val zioV = "2.0.9"
val zioV = "2.0.10"
val magnoliaForScala2 = "com.softwaremill.magnolia1_2" %% "magnolia" % "1.1.3"
val scalaReflectForScala2 = "org.scala-lang" % "scala-reflect" % scalaVersion.value
val magnoliaForScala3 = "com.softwaremill.magnolia1_3" %% "magnolia" % "1.2.6"
val magnoliaForScala3 = "com.softwaremill.magnolia1_3" %% "magnolia" % "1.3.0"

val coreDependencies =
Seq(
Expand All @@ -47,7 +47,7 @@ lazy val root =
zio %% "zio-streams" % zioV,
zio %% "zio-test" % zioV % Test,
zio %% "zio-test-sbt" % zioV % Test,
"com.dimafeng" %% "testcontainers-scala" % "0.40.11" % Test,
"com.dimafeng" %% "testcontainers-scala" % "0.40.12" % Test,
"com.outr" %% "scribe-slf4j" % "3.11.0" % Test
)

Expand Down
2 changes: 1 addition & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ addSbtPlugin("com.codecommit" % "sbt-github-actions" % "0.14.2")
addSbtPlugin("io.github.davidgregory084" % "sbt-tpolecat" % "0.4.2")
addSbtPlugin("com.github.sbt" % "sbt-release" % "1.1.0")
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "2.0.7")
addSbtPlugin("org.scoverage" % "sbt-coveralls" % "1.3.2")
addSbtPlugin("org.scoverage" % "sbt-coveralls" % "1.3.6")
addSbtPlugin("com.timushev.sbt" % "sbt-updates" % "0.6.3")

0 comments on commit a82119d

Please sign in to comment.