From 357bfa7751e35bab93b9e1b8b4d1f64c2e7981cb Mon Sep 17 00:00:00 2001 From: Esun Kim Date: Wed, 23 Oct 2024 15:30:02 -0700 Subject: [PATCH] [Dep] Upgraded rule_cc to 0.0.12 (#37978) This is needed to get protobuf upgraded to v29 Closes #37978 COPYBARA_INTEGRATE_REVIEW=https://github.com/grpc/grpc/pull/37978 from veblush:rule-cc-up f91f399071630767653d8dc507b680c34308adcd PiperOrigin-RevId: 689124821 --- bazel/grpc_deps.bzl | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/bazel/grpc_deps.bzl b/bazel/grpc_deps.bzl index b54f9cee778..7cd65ea77db 100644 --- a/bazel/grpc_deps.bzl +++ b/bazel/grpc_deps.bzl @@ -98,11 +98,11 @@ def grpc_deps(): if "rules_cc" not in native.existing_rules(): http_archive( name = "rules_cc", - sha256 = "2037875b9a4456dce4a79d112a8ae885bbc4aad968e6587dca6e64f3a0900cdf", - strip_prefix = "rules_cc-0.0.9", + sha256 = "b26168b9a13f094794982b832975eaf53cefc5dced5b3be7df6b8b794dc2744b", + strip_prefix = "rules_cc-0.0.12", urls = [ - "https://storage.googleapis.com/grpc-bazel-mirror/github.com/bazelbuild/rules_cc/releases/download/0.0.9/rules_cc-0.0.9.tar.gz", - "https://github.com/bazelbuild/rules_cc/releases/download/0.0.9/rules_cc-0.0.9.tar.gz", + "https://storage.googleapis.com/grpc-bazel-mirror/github.com/bazelbuild/rules_cc/releases/download/0.0.12/rules_cc-0.0.12.tar.gz", + "https://github.com/bazelbuild/rules_cc/releases/download/0.0.12/rules_cc-0.0.12.tar.gz", ], )