Skip to content

Commit

Permalink
Simplify versions in package.bzl for renovate (#695)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexeagle authored and gregmagolan committed Apr 15, 2019
1 parent 77125b2 commit d5a679d
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions package.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -69,23 +69,22 @@ def rules_nodejs_dev_dependencies():
)

# bazel-skylib 0.8.0 released 2019.03.20 (https://github.com/bazelbuild/bazel-skylib/releases/tag/0.8.0)
skylib_version = "0.8.0"
http_archive(
name = "bazel_skylib",
type = "tar.gz",
url = "https://github.com/bazelbuild/bazel-skylib/releases/download/{0}/bazel-skylib.{0}.tar.gz".format(skylib_version),
url = "https://github.com/bazelbuild/bazel-skylib/releases/download/0.8.0/bazel-skylib.0.8.0.tar.gz",
sha256 = "2ef429f5d7ce7111263289644d233707dba35e39696377ebab8b0bc701f7818e",
)

# Needed for Remote Build Execution
# See https://releases.bazel.build/bazel-toolchains.html
http_archive(
name = "bazel_toolchains",
sha256 = "1cb20b9efe23377b9120ab7a9f0d9467235815fb127f1a73d34c820963300ee1",
strip_prefix = "bazel-toolchains-9c2e98bc434d1e280a5a6f93cf672e3b278fe29e",
sha256 = "ad524ca5720c2290d57b6198902a66ceb678c8983714d599e5076e59acf0ba0d",
strip_prefix = "bazel-toolchains-5a24a7e",
urls = [
"https://mirror.bazel.build/github.com/bazelbuild/bazel-toolchains/archive/9c2e98bc434d1e280a5a6f93cf672e3b278fe29e.tar.gz",
"https://github.com/bazelbuild/bazel-toolchains/archive/9c2e98bc434d1e280a5a6f93cf672e3b278fe29e.tar.gz",
"https://mirror.bazel.build/github.com/bazelbuild/bazel-toolchains/archive/5a24a7e.tar.gz",
"https://github.com/bazelbuild/bazel-toolchains/archive/5a24a7e.tar.gz",
],
)

Expand Down

0 comments on commit d5a679d

Please sign in to comment.