Update repository rules to supported versions

Fixes #213

Closes #218

PiperOrigin-RevId: 200227472
diff --git a/WORKSPACE b/WORKSPACE
index c655fdd..01388e1 100644
--- a/WORKSPACE
+++ b/WORKSPACE
@@ -13,10 +13,11 @@
 # limitations under the License.
 
 workspace(name = "build_bazel_rules_typescript")
+load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
 
 http_archive(
     name = "build_bazel_rules_nodejs",
-    url = "https://github.com/bazelbuild/rules_nodejs/archive/0.9.1.zip",
+    urls = ["https://github.com/bazelbuild/rules_nodejs/archive/0.9.1.zip"],
     strip_prefix = "rules_nodejs-0.9.1",
     sha256 = "6139762b62b37c1fd171d7f22aa39566cb7dc2916f0f801d505a9aaf118c117f",
 )
@@ -44,23 +45,23 @@
 
 http_archive(
     name = "io_bazel_rules_go",
-    sha256 = "feba3278c13cde8d67e341a837f69a029f698d7a27ddbb2a202be7a10b22142a",
     urls = [
         "http://mirror.bazel.build/github.com/bazelbuild/rules_go/releases/download/0.10.3/rules_go-0.10.3.tar.gz",
         "https://github.com/bazelbuild/rules_go/releases/download/0.10.3/rules_go-0.10.3.tar.gz"
     ],
+    sha256 = "feba3278c13cde8d67e341a837f69a029f698d7a27ddbb2a202be7a10b22142a",
 )
 
 http_archive(
     name = "io_bazel",
-    url = "https://github.com/bazelbuild/bazel/releases/download/0.9.0/bazel-0.9.0-dist.zip",
+    urls = ["https://github.com/bazelbuild/bazel/releases/download/0.9.0/bazel-0.9.0-dist.zip"],
     sha256 = "efb28fed4ffcfaee653e0657f6500fc4cbac61e32104f4208da385676e76312a",
 )
 
 http_archive(
     name = "bazel_gazelle",
+    urls = ["https://github.com/bazelbuild/bazel-gazelle/releases/download/0.10.1/bazel-gazelle-0.10.1.tar.gz"],
     sha256 = "d03625db67e9fb0905bbd206fa97e32ae9da894fe234a493e7517fd25faec914",
-    url = "https://github.com/bazelbuild/bazel-gazelle/releases/download/0.10.1/bazel-gazelle-0.10.1.tar.gz",
 )
 
 load("@io_bazel_rules_go//go:def.bzl", "go_rules_dependencies", "go_register_toolchains")
@@ -75,7 +76,7 @@
 
 http_archive(
     name = "io_bazel_rules_webtesting",
-    url = "https://github.com/bazelbuild/rules_webtesting/archive/v0.2.0.zip",
+    urls = ["https://github.com/bazelbuild/rules_webtesting/archive/v0.2.0.zip"],
     strip_prefix = "rules_webtesting-0.2.0",
     sha256 = "cecc12f07e95740750a40d38e8b14b76fefa1551bef9332cb432d564d693723c",
 )
@@ -99,7 +100,7 @@
 
 http_archive(
     name = "io_bazel_rules_sass",
-    url = "https://github.com/bazelbuild/rules_sass/archive/0.0.3.zip",
+    urls = ["https://github.com/bazelbuild/rules_sass/archive/0.0.3.zip"],
     strip_prefix = "rules_sass-0.0.3",
     sha256 = "8fa98e7b48a5837c286a1ea254b5a5c592fced819ee9fe4fdd759768d97be868",
 )
@@ -108,7 +109,7 @@
 
 http_archive(
     name = "io_bazel_skydoc",
-    url = "https://github.com/bazelbuild/skydoc/archive/0ef7695c9d70084946a3e99b89ad5a99ede79580.zip",
+    urls = ["https://github.com/bazelbuild/skydoc/archive/0ef7695c9d70084946a3e99b89ad5a99ede79580.zip"],
     strip_prefix = "skydoc-0ef7695c9d70084946a3e99b89ad5a99ede79580",
 )
 load("@io_bazel_skydoc//skylark:skylark.bzl", "skydoc_repositories")