diff options
author | Austin Schuh <AustinSchuh@users.noreply.github.com> | 2019-12-26 10:07:15 -0800 |
---|---|---|
committer | Wouter van Oortmerssen <aardappel@gmail.com> | 2019-12-26 10:07:15 -0800 |
commit | 8023d99e21063ef1550e67ca5282eb38b52e27f8 (patch) | |
tree | 33701d2a05e75d3411421b04437229ad29c60327 /WORKSPACE | |
parent | b4154405d174dc5bddb188dd04674cb21bf0bef1 (diff) | |
download | flatbuffers-8023d99e21063ef1550e67ca5282eb38b52e27f8.tar.gz flatbuffers-8023d99e21063ef1550e67ca5282eb38b52e27f8.tar.bz2 flatbuffers-8023d99e21063ef1550e67ca5282eb38b52e27f8.zip |
Upgrade rules_go (#5684)
This should help with #5672 if I'm reading the report back from
buildkite properly.
Diffstat (limited to 'WORKSPACE')
-rw-r--r-- | WORKSPACE | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -4,14 +4,14 @@ load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") http_archive( name = "io_bazel_rules_go", - 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", + "https://storage.googleapis.com/bazel-mirror/github.com/bazelbuild/rules_go/releases/download/v0.20.3/rules_go-v0.20.3.tar.gz", + "https://github.com/bazelbuild/rules_go/releases/download/v0.20.3/rules_go-v0.20.3.tar.gz", ], + sha256 = "e88471aea3a3a4f19ec1310a55ba94772d087e9ce46e41ae38ecebe17935de7b", ) -load("@io_bazel_rules_go//go:deps.bzl", "go_register_toolchains", "go_rules_dependencies") +load("@io_bazel_rules_go//go:deps.bzl", "go_rules_dependencies", "go_register_toolchains") go_rules_dependencies() |