Skip to content

Commit 41f718e

Browse files
authored
Pinned heroku cli (#6)
* use a pinned version of heroku cli * linux sha
1 parent 4e163a2 commit 41f718e

File tree

1 file changed

+4
-10
lines changed

1 file changed

+4
-10
lines changed

tools/deps.bzl

+4-10
Original file line numberDiff line numberDiff line change
@@ -8,21 +8,15 @@ load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
88
def bazoku_deps():
99
http_archive(
1010
name = "heroku_darwin",
11-
# TODO: we need to pin to a version, otherwise the sha would fail eventually..
12-
# can't find pinned versions hosted anywhere, need to ask around.
13-
# that's why the SHA is commented out..
14-
# sha256 = "d96f75059a195226a36a8bd367e0422106f9051e229773dad07d2c9adabd5e68",
15-
urls = [ "https://cli-assets.heroku.com/heroku-darwin-x64.tar.gz" ],
11+
sha256 = "d96f75059a195226a36a8bd367e0422106f9051e229773dad07d2c9adabd5e68",
12+
urls = [ "https://github.com/salesforce/bazoku/releases/download/v0.1.0/heroku-7.60.2-darwin-x64.tar.gz" ],
1613
build_file_content = """exports_files(glob(["**/*"]))""",
1714
)
1815

1916
http_archive(
2017
name = "heroku_linux",
21-
# TODO: we need to pin to a version, otherwise the sha would fail eventually..
22-
# can't find pinned versions hosted anywhere, need to ask around.
23-
# that's why the SHA is commented out..
24-
# sha256 = "d96f75059a195226a36a8bd367e0422106f9051e229773dad07d2c9adabd5e68",
25-
urls = [ "https://cli-assets.heroku.com/heroku-linux-x64.tar.gz" ],
18+
sha256 = "f9259fee83378afc708e9d0b8d8b2b4602bed2240453338a59e53a0abb5df25f",
19+
urls = [ "https://github.com/salesforce/bazoku/releases/download/v0.1.0/heroku-7.60.2-linux-x64.tar.gz" ],
2620
build_file_content = """exports_files(glob(["**/*"]))""",
2721
)
2822

0 commit comments

Comments
 (0)