diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e826939e..c49ba71d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -33,7 +33,7 @@ jobs: - name: Setup Java (temurin@17) if: matrix.java == 'temurin@17' - uses: actions/setup-java@v3 + uses: actions/setup-java@v4 with: distribution: temurin java-version: 17 diff --git a/.scalafmt.conf b/.scalafmt.conf index caf54757..8ac83c51 100644 --- a/.scalafmt.conf +++ b/.scalafmt.conf @@ -1,4 +1,4 @@ -version = 3.7.15 +version = 3.7.17 runner.dialect = scala213 project.git = true align.preset = more diff --git a/project/Dependencies.scala b/project/Dependencies.scala index 9951417f..4f5d91aa 100644 --- a/project/Dependencies.scala +++ b/project/Dependencies.scala @@ -4,19 +4,19 @@ object Dependencies { private object Versions { val kindProjector = "0.13.2" val catsEffect = "3.5.2" - val mongodb = "4.11.0" - val fs2 = "3.9.2" + val mongodb = "4.11.1" + val fs2 = "3.9.3" val circe = "0.14.6" - val zio = "2.0.18" + val zio = "2.0.20" val zioInteropReactive = "2.0.2" val zioJson = "0.6.2" - val logback = "1.4.11" + val logback = "1.4.14" val scalaTest = "3.2.17" - val embeddedMongo = "4.9.2" + val embeddedMongo = "4.12.0" val immutableValue = "2.10.0" - val commonsCompress = "1.24.0" + val commonsCompress = "1.25.0" } private object Libraries { diff --git a/project/build.properties b/project/build.properties index e8a1e246..abbbce5d 100644 --- a/project/build.properties +++ b/project/build.properties @@ -1 +1 @@ -sbt.version=1.9.7 +sbt.version=1.9.8 diff --git a/project/plugins.sbt b/project/plugins.sbt index 33b61d35..7e102b41 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,10 +1,10 @@ addSbtPlugin("org.typelevel" % "sbt-tpolecat" % "0.5.0") addSbtPlugin("com.github.sbt" % "sbt-release" % "1.1.0") -addSbtPlugin("com.github.sbt" % "sbt-github-actions" % "0.18.0") +addSbtPlugin("com.github.sbt" % "sbt-github-actions" % "0.20.0") addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.2") addSbtPlugin("de.heikoseeberger" % "sbt-header" % "5.10.0") -addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "3.9.21") +addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "3.10.0") addSbtPlugin("com.jsuereth" % "sbt-pgp" % "2.1.1") -addSbtPlugin("com.47deg" % "sbt-microsites" % "1.4.3") +addSbtPlugin("com.47deg" % "sbt-microsites" % "1.4.4") addSbtPlugin("com.typesafe" % "sbt-mima-plugin" % "1.1.3") addSbtPlugin("com.timushev.sbt" % "sbt-updates" % "0.6.4")