We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents b35f146 + beb2881 commit 17bab84Copy full SHA for 17bab84
Android/Gradle/build.yml
@@ -0,0 +1,10 @@
1
+# Audit Step for Required Dependency/Provider Domains
2
+ - name: Audit Dependency Domains
3
+ run: |
4
+ required_domains=("dl.google.com" "maven.google.com" "repo1.maven.org" "services.gradle.org" "storage.googleapis.com" "github.com" "objects.githubusercontent.com" "actions.githubusercontent.com")
5
+ for domain in "${required_domains[@]}"; do
6
+ if ! ping -c 1 -W 1 $domain > /dev/null; then
7
+ echo "Domain $domain is not reachable";
8
+ exit 1;
9
+ fi;
10
+ done
0 commit comments