From 9b472ec10e53d9ae0c26ae2c715f83f6e0b80c0f Mon Sep 17 00:00:00 2001 From: PJ Fanning Date: Fri, 12 Apr 2024 00:11:10 +0200 Subject: [PATCH] protobuf 3 pin in .scala-steward.conf --- .scala-steward.conf | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.scala-steward.conf b/.scala-steward.conf index faf588ea..4a8a1424 100644 --- a/.scala-steward.conf +++ b/.scala-steward.conf @@ -11,6 +11,8 @@ updates.pin = [ { groupId = "com.fasterxml.jackson.core", version="2.16." } # Scala 3.3 is a LTS { groupId = "org.scala-lang", artifactId = "scala3-library", version = "3.3." } + # protobuf 4 is not well supported + { groupId = "com.google.protobuf", artifactId = "protobuf-java", version = "3." } ] updatePullRequests = "always"