diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 130b9ff3..80398cac 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,7 +15,7 @@ jobs: - uses: coursier/setup-action@v1 - name: Starting up RabbitMQ - run: docker-compose up -d + run: docker compose up -d - name: Cache Coursier dependencies uses: actions/cache@v4 @@ -37,7 +37,7 @@ jobs: run: sbt -J-Xms4G -J-Xmx4G buildFs2Rabbit - name: Shutting down RabbitMQ - run: docker-compose down + run: docker compose down migration-check: runs-on: ubuntu-latest diff --git a/.scalafmt.conf b/.scalafmt.conf index 34dce4b1..bd0ebc71 100644 --- a/.scalafmt.conf +++ b/.scalafmt.conf @@ -1,4 +1,4 @@ -version = "3.8.2" +version = "3.8.3" style = default maxColumn = 120 align.preset = most diff --git a/README.md b/README.md index 2b881ea5..91b42c9a 100644 --- a/README.md +++ b/README.md @@ -43,10 +43,10 @@ Check the [official guide](https://fs2-rabbit.profunktor.dev/guide.html) for upd ## Running tests locally -Start a `RabbitMQ` instance using `docker-compose` (recommended): +Start a `RabbitMQ` instance using `docker compose` (recommended): ```bash -> docker-compose up +> docker compose up > sbt +test ``` diff --git a/project/Dependencies.scala b/project/Dependencies.scala index 2a181c5e..26200320 100644 --- a/project/Dependencies.scala +++ b/project/Dependencies.scala @@ -8,7 +8,7 @@ object Dependencies { val fs2 = "3.11.0" val circe = "0.14.9" val amqpClient = "5.21.0" - val logback = "1.5.6" + val logback = "1.5.7" val monix = "3.3.0" val zio = "1.0.18" val zioCats = "3.2.9.1" diff --git a/project/plugins.sbt b/project/plugins.sbt index 8c52da06..cc14f879 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -6,6 +6,6 @@ addSbtPlugin("de.heikoseeberger" % "sbt-header" % "5.10.0") addSbtPlugin("com.47deg" % "sbt-microsites" % "1.4.4") addSbtPlugin("org.scalameta" % "sbt-mdoc" % "2.5.4") addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.2") -addSbtPlugin("org.typelevel" % "sbt-tpolecat" % "0.5.1") +addSbtPlugin("org.typelevel" % "sbt-tpolecat" % "0.5.2") addSbtPlugin("com.timushev.sbt" % "sbt-updates" % "0.6.4") -addSbtPlugin("com.typesafe" % "sbt-mima-plugin" % "1.1.3") +addSbtPlugin("com.typesafe" % "sbt-mima-plugin" % "1.1.4")