diff --git a/examples/deps/repositories.bzl b/examples/deps/repositories.bzl index 711e3c7fc..6c61cf024 100644 --- a/examples/deps/repositories.bzl +++ b/examples/deps/repositories.bzl @@ -8,10 +8,8 @@ def repositories(): maybe( http_archive, name = "rules_cc", - url = "https://github.com/bazelbuild/rules_cc/archive/dd2758b96dc8f9f4add81eaa4154b7e3d8be6873.zip", - sha256 = "4e14abe3f288b5ae31eee4dc68472bfcd8d59a0bb1be91dd2c6bfa8af56baf19", - strip_prefix = "rules_cc-dd2758b96dc8f9f4add81eaa4154b7e3d8be6873", - type = "zip", + urls = ["https://github.com/bazelbuild/rules_cc/releases/download/0.0.1/rules_cc-0.0.1.tar.gz"], + sha256 = "4dccbfd22c0def164c8f47458bd50e0c7148f3d92002cdb459c2a96a68498241", ) maybe( diff --git a/examples/third_party/python/python_repositories.bzl b/examples/third_party/python/python_repositories.bzl index ca6a3dd14..3aa08d186 100644 --- a/examples/third_party/python/python_repositories.bzl +++ b/examples/third_party/python/python_repositories.bzl @@ -29,10 +29,10 @@ def python_repositories(): maybe( http_archive, name = "rules_python", - sha256 = "778197e26c5fbeb07ac2a2c5ae405b30f6cb7ad1f5510ea6fdac03bded96cc6f", + sha256 = "954aa89b491be4a083304a2cb838019c8b8c3720a7abb9c4cb81ac7a24230cea", urls = [ - "https://mirror.bazel.build/github.com/bazelbuild/rules_python/releases/download/0.2.0/rules_python-0.2.0.tar.gz", - "https://github.com/bazelbuild/rules_python/releases/download/0.2.0/rules_python-0.2.0.tar.gz", + "https://mirror.bazel.build/github.com/bazelbuild/rules_python/releases/download/0.4.0/rules_python-0.4.0.tar.gz", + "https://github.com/bazelbuild/rules_python/releases/download/0.4.0/rules_python-0.4.0.tar.gz", ], ) diff --git a/examples/third_party/repositories.bzl b/examples/third_party/repositories.bzl index b1e78d549..24379955f 100644 --- a/examples/third_party/repositories.bzl +++ b/examples/third_party/repositories.bzl @@ -48,8 +48,6 @@ def repositories(): maybe( http_archive, name = "rules_cc", - url = "https://github.com/bazelbuild/rules_cc/archive/dd2758b96dc8f9f4add81eaa4154b7e3d8be6873.zip", - sha256 = "4e14abe3f288b5ae31eee4dc68472bfcd8d59a0bb1be91dd2c6bfa8af56baf19", - strip_prefix = "rules_cc-dd2758b96dc8f9f4add81eaa4154b7e3d8be6873", - type = "zip", + urls = ["https://github.com/bazelbuild/rules_cc/releases/download/0.0.1/rules_cc-0.0.1.tar.gz"], + sha256 = "4dccbfd22c0def164c8f47458bd50e0c7148f3d92002cdb459c2a96a68498241", )