From 5357ceb487e24921d2e3840c9bc093daba207b98 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A1szl=C3=B3=20Csomor?= Date: Thu, 23 Jan 2020 13:31:42 +0100 Subject: [PATCH] Update io_bazel_rules_appengine to fix https issue (#145) * Update io_bazel_rules_appengine to fix https issue Update `@io_bazel_rules_appengine` to use https for Mavel URLs. See https://github.com/bazelbuild/examples/issues/144 Fixes https://github.com/bazelbuild/examples/issues/144 --- tutorial/WORKSPACE | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/tutorial/WORKSPACE b/tutorial/WORKSPACE index 89767da8e..f916cf8ed 100644 --- a/tutorial/WORKSPACE +++ b/tutorial/WORKSPACE @@ -30,9 +30,12 @@ apple_support_dependencies() http_archive( name = "io_bazel_rules_appengine", - sha256 = "a7683a79e2001fef2aef7f2ade5bdc1c99af30cea9445cbbf67ddf8959b8a879", - strip_prefix = "rules_appengine-69621ad36dcb8b8e07379eda5e7d22a83364b205", - url = "https://github.com/bazelbuild/rules_appengine/archive/69621ad36dcb8b8e07379eda5e7d22a83364b205.tar.gz", + # TODO: update to a release version that contains 339f6aba67fcedb7268cf54d1163cf7704a277ca. + # This commit fixes the Maven artifact URLs to use "https" instead of "http". + # We don't specify sha256, because the sha256 of GitHub-served non-release archives isn't + # stable. + urls = ["https://github.com/bazelbuild/rules_appengine/archive/339f6aba67fcedb7268cf54d1163cf7704a277ca.tar.gz"], + strip_prefix = "rules_appengine-339f6aba67fcedb7268cf54d1163cf7704a277ca", ) load(