From 3806242f44aaaf087f2d2ec73454722dc92d4c37 Mon Sep 17 00:00:00 2001 From: Arman Bilge Date: Wed, 18 Oct 2023 04:58:04 +0000 Subject: [PATCH] Mass updates --- .github/workflows/ci.yml | 38 +++++++++++++++++++------------------- build.sbt | 10 +++++----- project/plugins.sbt | 10 +++++----- 3 files changed, 29 insertions(+), 29 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0fc187f..cc375ad 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -28,7 +28,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - scala: [2.13.11, 3.2.2] + scala: [2.13.12, 3.3.1] java: [temurin@8] project: [rootJS, rootJVM, rootNative] runs-on: ${{ matrix.os }} @@ -146,62 +146,62 @@ jobs: ~/Library/Caches/Coursier/v1 key: ${{ runner.os }}-sbt-cache-v2-${{ hashFiles('**/*.sbt') }}-${{ hashFiles('project/build.properties') }} - - name: Download target directories (2.13.11, rootJS) + - name: Download target directories (2.13.12, rootJS) uses: actions/download-artifact@v3 with: - name: target-${{ matrix.os }}-${{ matrix.java }}-2.13.11-rootJS + name: target-${{ matrix.os }}-${{ matrix.java }}-2.13.12-rootJS - - name: Inflate target directories (2.13.11, rootJS) + - name: Inflate target directories (2.13.12, rootJS) run: | tar xf targets.tar rm targets.tar - - name: Download target directories (2.13.11, rootJVM) + - name: Download target directories (2.13.12, rootJVM) uses: actions/download-artifact@v3 with: - name: target-${{ matrix.os }}-${{ matrix.java }}-2.13.11-rootJVM + name: target-${{ matrix.os }}-${{ matrix.java }}-2.13.12-rootJVM - - name: Inflate target directories (2.13.11, rootJVM) + - name: Inflate target directories (2.13.12, rootJVM) run: | tar xf targets.tar rm targets.tar - - name: Download target directories (2.13.11, rootNative) + - name: Download target directories (2.13.12, rootNative) uses: actions/download-artifact@v3 with: - name: target-${{ matrix.os }}-${{ matrix.java }}-2.13.11-rootNative + name: target-${{ matrix.os }}-${{ matrix.java }}-2.13.12-rootNative - - name: Inflate target directories (2.13.11, rootNative) + - name: Inflate target directories (2.13.12, rootNative) run: | tar xf targets.tar rm targets.tar - - name: Download target directories (3.2.2, rootJS) + - name: Download target directories (3.3.1, rootJS) uses: actions/download-artifact@v3 with: - name: target-${{ matrix.os }}-${{ matrix.java }}-3.2.2-rootJS + name: target-${{ matrix.os }}-${{ matrix.java }}-3.3.1-rootJS - - name: Inflate target directories (3.2.2, rootJS) + - name: Inflate target directories (3.3.1, rootJS) run: | tar xf targets.tar rm targets.tar - - name: Download target directories (3.2.2, rootJVM) + - name: Download target directories (3.3.1, rootJVM) uses: actions/download-artifact@v3 with: - name: target-${{ matrix.os }}-${{ matrix.java }}-3.2.2-rootJVM + name: target-${{ matrix.os }}-${{ matrix.java }}-3.3.1-rootJVM - - name: Inflate target directories (3.2.2, rootJVM) + - name: Inflate target directories (3.3.1, rootJVM) run: | tar xf targets.tar rm targets.tar - - name: Download target directories (3.2.2, rootNative) + - name: Download target directories (3.3.1, rootNative) uses: actions/download-artifact@v3 with: - name: target-${{ matrix.os }}-${{ matrix.java }}-3.2.2-rootNative + name: target-${{ matrix.os }}-${{ matrix.java }}-3.3.1-rootNative - - name: Inflate target directories (3.2.2, rootNative) + - name: Inflate target directories (3.3.1, rootNative) run: | tar xf targets.tar rm targets.tar diff --git a/build.sbt b/build.sbt index e217a37..3c70f5b 100644 --- a/build.sbt +++ b/build.sbt @@ -12,15 +12,15 @@ ThisBuild / tlSonatypeUseLegacyHost := true ThisBuild / tlMimaPreviousVersions := Set() val Scala212 = "2.12.18" -val Scala213 = "2.13.11" +val Scala213 = "2.13.12" -ThisBuild / crossScalaVersions := Seq(Scala213, "3.2.2") +ThisBuild / crossScalaVersions := Seq(Scala213, "3.3.1") ThisBuild / scalaVersion := Scala213 val catsV = "2.9.0" -val catsEffectV = "3.5.0" -val fs2V = "3.7.0" -val http4sV = "0.23.19" +val catsEffectV = "3.5.2" +val fs2V = "3.9.2" +val http4sV = "0.23.23" val munitCatsEffectV = "2.0.0-M3" import scalapb.compiler.Version.scalapbVersion diff --git a/project/plugins.sbt b/project/plugins.sbt index 3715c1d..d7ab442 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,12 +1,12 @@ addSbtPlugin("org.typelevel" % "sbt-typelevel-ci-release" % "0.4.22") addSbtPlugin("org.typelevel" % "sbt-typelevel-site" % "0.4.22") addSbtPlugin("org.typelevel" % "sbt-typelevel-settings" % "0.4.22") -addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.13.1") -addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "1.3.1") -addSbtPlugin("org.scala-native" % "sbt-scala-native" % "0.4.14") -addSbtPlugin("org.portable-scala" % "sbt-scala-native-crossproject" % "1.3.1") +addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.13.2") +addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "1.3.2") +addSbtPlugin("org.scala-native" % "sbt-scala-native" % "0.4.16") +addSbtPlugin("org.portable-scala" % "sbt-scala-native-crossproject" % "1.3.2") addSbtPlugin("com.eed3si9n" % "sbt-buildinfo" % "0.11.0") addSbtPlugin("com.thesamet" % "sbt-protoc" % "1.0.6") // Because sbt-protoc-gen-project brings in 1.0.4 addSbtPlugin("com.thesamet" % "sbt-protoc-gen-project" % "0.1.8") -libraryDependencies += "com.thesamet.scalapb" %% "compilerplugin" % "0.11.13" +libraryDependencies += "com.thesamet.scalapb" %% "compilerplugin" % "0.11.14"