diff options
| author | Jack Koenig | 2022-11-10 21:54:42 -0800 |
|---|---|---|
| committer | GitHub | 2022-11-10 21:54:42 -0800 |
| commit | b645e4167f8b69e884e82a9c89dd6b44ad1fd76f (patch) | |
| tree | fc0e722a59b3961e799f2a1b5e513439106d1bd7 | |
| parent | 79c17c8448c8c15a245c3435d9c97c128738121e (diff) | |
Workaround issue in release automation (#2574)
| -rw-r--r-- | build.sbt | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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)) ) |
