Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
fail-fast: false
matrix:
java: ['adopt@1.11']
scala: ['2.12.18', '2.13.13', '3.3.3']
scala: ['2.12.20', '2.13.16', '3.3.5']
steps:
- name: Checkout current branch
uses: actions/checkout@v2.3.4
Expand Down
28 changes: 14 additions & 14 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
val scala212 = "2.12.20"
val scala213 = "2.13.15"
val scala3 = "3.3.4"
val scala213 = "2.13.16"
val scala3 = "3.3.5"
val allScala = Seq(scala212, scala213, scala3)

val zioVersion = "2.1.14"
val zioGrpcVersion = "0.6.2"
val grpcNettyVersion = "1.63.2"
val zioVersion = "2.1.16"
val zioGrpcVersion = "0.6.3"
val grpcNettyVersion = "1.71.0"
val zioK8sVersion = "3.1.0"
val zioCacheVersion = "0.2.3"
val zioCatsInteropVersion = "23.1.0.0"
val sttpVersion = "3.10.1"
val calibanVersion = "2.9.1"
val redis4catsVersion = "1.5.2"
val redissonVersion = "3.27.1"
val scalaKryoVersion = "1.2.0"
val testContainersVersion = "0.41.3"
val scalaCompatVersion = "2.12.0"
val zioCacheVersion = "0.2.4"
val zioCatsInteropVersion = "23.1.0.5"
val sttpVersion = "3.10.3"
val calibanVersion = "2.10.0"
val redis4catsVersion = "1.7.2"
val redissonVersion = "3.45.1"
val scalaKryoVersion = "1.2.1"
val testContainersVersion = "0.43.0"
val scalaCompatVersion = "2.13.0"

inThisBuild(
List(
Expand Down
2 changes: 1 addition & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ addSbtPlugin("pl.project13.scala" % "sbt-jmh" % "0.4.7")
resolvers ++= Resolver.sonatypeOssRepos("snapshots")

libraryDependencies += "com.thesamet.scalapb" %% "compilerplugin" % "0.11.17"
libraryDependencies += "com.thesamet.scalapb.zio-grpc" %% "zio-grpc-codegen" % "0.6.2"
libraryDependencies += "com.thesamet.scalapb.zio-grpc" %% "zio-grpc-codegen" % "0.6.3"
Loading