From 755ca5bc6286f3d008ad80212bd7706752306048 Mon Sep 17 00:00:00 2001 From: Sam Guymer Date: Tue, 17 Mar 2026 20:18:11 +1000 Subject: [PATCH] Dependency updates --- .github/workflows/ci.yml | 6 +++--- .github/workflows/release.yml | 6 +++--- build.sbt | 8 ++++---- project/build.properties | 2 +- project/plugins.sbt | 6 +++--- 5 files changed, 14 insertions(+), 14 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c54eb3a..3b92ca1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,12 +15,12 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: fetch-depth: 0 - name: Install JDK 11 - uses: actions/setup-java@v4 + uses: actions/setup-java@v5 with: distribution: zulu java-version: '11' @@ -30,7 +30,7 @@ jobs: uses: sbt/setup-sbt@v1 - name: Cache SBT - uses: coursier/cache-action@v6 + uses: coursier/cache-action@v8 with: extraKey: v1 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 75096a0..c3b7c20 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -9,10 +9,10 @@ jobs: name: Publish steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Install JDK 11 - uses: actions/setup-java@v4 + uses: actions/setup-java@v5 with: distribution: zulu java-version: '11' @@ -22,7 +22,7 @@ jobs: uses: sbt/setup-sbt@v1 - name: Cache SBT - uses: coursier/cache-action@v6 + uses: coursier/cache-action@v8 with: extraKey: v1 diff --git a/build.sbt b/build.sbt index 18a7008..96121bf 100644 --- a/build.sbt +++ b/build.sbt @@ -1,11 +1,11 @@ // format: off val catsVersion = "2.13.0" -val fs2Version = "3.12.2" +val fs2Version = "3.13.0" val zioVersion = "2.1.19" -val Scala213 = "2.13.16" -val Scala3 = "3.3.6" +val Scala213 = "2.13.18" +val Scala3 = "3.3.7" inThisBuild(Seq( organization := "io.github.guymers", @@ -144,7 +144,7 @@ lazy val fs2 = module("fs2") "dev.zio" %% "zio-interop-cats" % "23.1.0.5" % Test, ), libraryDependencies ++= (CrossVersion.partialVersion(scalaVersion.value) match { - case Some((2, _)) => Seq(compilerPlugin("org.typelevel" % "kind-projector" % "0.13.3" cross CrossVersion.full)) + case Some((2, _)) => Seq(compilerPlugin("org.typelevel" % "kind-projector" % "0.13.4" cross CrossVersion.full)) case _ => Seq.empty }), ) diff --git a/project/build.properties b/project/build.properties index 01a16ed..2106fb4 100644 --- a/project/build.properties +++ b/project/build.properties @@ -1 +1 @@ -sbt.version=1.11.7 +sbt.version=1.12.6 diff --git a/project/plugins.sbt b/project/plugins.sbt index 071f10d..2ce2e9a 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,9 +1,9 @@ addSbtPlugin("pl.project13.scala" % "sbt-jmh" % "0.4.8") -addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.5") -addSbtPlugin("org.wartremover" % "sbt-wartremover" % "3.4.1") +addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.6") +addSbtPlugin("org.wartremover" % "sbt-wartremover" % "3.5.6") -addSbtPlugin("com.typesafe" % "sbt-mima-plugin" % "1.1.4") +addSbtPlugin("com.typesafe" % "sbt-mima-plugin" % "1.1.5") addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.11.2") //addSbtPlugin("com.timushev.sbt" % "sbt-updates" % "0.6.4")