diff options
author | Nicolas Lacasse <nlacasse@google.com> | 2019-06-13 10:46:22 -0700 |
---|---|---|
committer | Shentubot <shentubot@google.com> | 2019-06-13 10:47:29 -0700 |
commit | 94ab253d7edfa359898d73b62a88da62629425c3 (patch) | |
tree | 67a6a967a358b5bd8078f18c79cc1a089e5a7650 | |
parent | e352f464780b22945308469de4e92a4f068b4805 (diff) |
Bump rules_go to v0.18.6, and go toolchain to v1.12.6.
PiperOrigin-RevId: 253061432
-rw-r--r-- | WORKSPACE | 9 |
1 files changed, 6 insertions, 3 deletions
@@ -3,8 +3,11 @@ load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") http_archive( name = "io_bazel_rules_go", - sha256 = "a82a352bffae6bee4e95f68a8d80a70e87f42c4741e6a448bec11998fcc82329", - url = "https://github.com/bazelbuild/rules_go/releases/download/0.18.5/rules_go-0.18.5.tar.gz", + sha256 = "f04d2373bcaf8aa09bccb08a98a57e721306c8f6043a2a0ee610fd6853dcde3d", + urls = [ + "https://storage.googleapis.com/bazel-mirror/github.com/bazelbuild/rules_go/releases/download/0.18.6/rules_go-0.18.6.tar.gz", + "https://github.com/bazelbuild/rules_go/releases/download/0.18.6/rules_go-0.18.6.tar.gz", + ], ) http_archive( @@ -17,7 +20,7 @@ load("@io_bazel_rules_go//go:deps.bzl", "go_rules_dependencies", "go_register_to go_rules_dependencies() -go_register_toolchains(go_version = "1.12.5") +go_register_toolchains(go_version = "1.12.6") load("@bazel_gazelle//:deps.bzl", "gazelle_dependencies", "go_repository") |