From 52433b9aac2ecbba1304eccbec7b064c1f0d13b7 Mon Sep 17 00:00:00 2001 From: Artem Bilan Date: Mon, 8 Feb 2021 16:48:06 -0500 Subject: [PATCH] Reinstate checksum for Gradle distribution Looks like `distributionSha256Sum` property is removed from the `gradle-wrapper.properties` when we run `wrapper` task. We need this option for better performance on GH Actions when it builds PRs. Plus we won't see a respective warning over there --- gradle/wrapper/gradle-wrapper.properties | 1 + 1 file changed, 1 insertion(+) diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index 2a563242c1..1da2bb5806 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -3,3 +3,4 @@ distributionPath=wrapper/dists distributionUrl=https\://services.gradle.org/distributions/gradle-6.8.2-bin.zip zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists +distributionSha256Sum=8de6efc274ab52332a9c820366dd5cf5fc9d35ec7078fd70c8ec6913431ee610 \ No newline at end of file