aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJack Koenig2022-11-10 21:54:42 -0800
committerGitHub2022-11-10 21:54:42 -0800
commitb645e4167f8b69e884e82a9c89dd6b44ad1fd76f (patch)
treefc0e722a59b3961e799f2a1b5e513439106d1bd7
parent79c17c8448c8c15a245c3435d9c97c128738121e (diff)
Workaround issue in release automation (#2574)
-rw-r--r--build.sbt3
1 files changed, 2 insertions, 1 deletions
diff --git a/build.sbt b/build.sbt
index b0d2a666..0001cbae 100644
--- a/build.sbt
+++ b/build.sbt
@@ -65,7 +65,8 @@ lazy val mimaSettings = Seq(
)
lazy val protobufSettings = Seq(
- ProtobufConfig / version := "3.18.2", // CVE-2021-22569
+ // The parentheses around the version help avoid version ambiguity in release scripts
+ ProtobufConfig / version := ("3.18.2"), // CVE-2021-22569
ProtobufConfig / sourceDirectory := baseDirectory.value / "src" / "main" / "proto",
ProtobufConfig / protobufRunProtoc := (args => com.github.os72.protocjar.Protoc.runProtoc("-v351" +: args.toArray))
)