From 1c80999e8c3347aa349871828ac1a13aabb752fa Mon Sep 17 00:00:00 2001 From: Justin Santa Barbara Date: Sat, 3 Feb 2018 13:16:54 -0500 Subject: [PATCH] Explicitly set go version in bazel build So it doesn't float with rules_go updates --- WORKSPACE | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/WORKSPACE b/WORKSPACE index 620e054144..c829d90a21 100644 --- a/WORKSPACE +++ b/WORKSPACE @@ -11,7 +11,9 @@ load("@io_bazel_rules_go//go:def.bzl", "go_rules_dependencies", "go_register_too go_rules_dependencies() -go_register_toolchains() +go_register_toolchains( + go_version = "1.9.3", +) #============================================================================= # Docker rules