aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTed Pudlik <tpudlik@google.com>2023-11-14 01:22:38 +0000
committerCQ Bot Account <pigweed-scoped@luci-project-accounts.iam.gserviceaccount.com>2023-11-14 01:22:38 +0000
commit1548f2406f69d61c8f90e847eb6ba0d1d178b330 (patch)
tree3665a2bea157f3dee75d6fd4de5db6e8aa17486c
parent8a42e20a49f2810d8823cd057c81b6b65c970702 (diff)
downloadpigweed-1548f2406f69d61c8f90e847eb6ba0d1d178b330.tar.gz
bazel: Upgrade nanopb version
Fixes: b/310658991 Change-Id: Id1a8d180e283d2b1ea217b65afb0d6a964069c47 Reviewed-on: https://pigweed-review.googlesource.com/c/pigweed/pigweed/+/180871 Commit-Queue: Auto-Submit <auto-submit@pigweed-service-accounts.iam.gserviceaccount.com> Pigweed-Auto-Submit: Ted Pudlik <tpudlik@google.com> Presubmit-Verified: CQ Bot Account <pigweed-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Armando Montanez <amontanez@google.com>
-rw-r--r--WORKSPACE8
1 files changed, 4 insertions, 4 deletions
diff --git a/WORKSPACE b/WORKSPACE
index 1f14909f4..085b2bf4a 100644
--- a/WORKSPACE
+++ b/WORKSPACE
@@ -204,11 +204,11 @@ protobuf_deps()
# Setup Nanopb protoc plugin.
# Required by: Pigweed.
# Used in modules: pw_protobuf.
-git_repository(
+http_archive(
name = "com_github_nanopb_nanopb",
- commit = "444aca1c4b1d782ee62168232d7b466a837c609e",
- remote = "https://github.com/nanopb/nanopb.git",
- shallow_since = "1641373017 +0800",
+ sha256 = "3f78bf63722a810edb6da5ab5f0e76c7db13a961c2aad4ab49296e3095d0d830",
+ strip_prefix = "nanopb-0.4.8",
+ url = "https://github.com/nanopb/nanopb/archive/refs/tags/0.4.8.tar.gz",
)
load("@com_github_nanopb_nanopb//extra/bazel:nanopb_deps.bzl", "nanopb_deps")