Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ansible/ansible.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSam Doran <sdoran@redhat.com>2021-04-29 17:26:23 +0300
committerGitHub <noreply@github.com>2021-04-29 17:26:23 +0300
commitaa12af1d346cefc296fb862705cbf62b42bfc1d3 (patch)
tree8a024c013a0271dc1fb01a358a880a07ff42cfca /.azure-pipelines
parent112b175f172467590885876a2e1e60d9012871b6 (diff)
Use our own copy of the Codecov uploader (#74460)
Due to the recent security incident, use our own copy hosted in S3 to mitigate future risk from running an arbitrary script downloaded from a remote and untrtusted server.
Diffstat (limited to '.azure-pipelines')
-rwxr-xr-x.azure-pipelines/scripts/publish-codecov.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/.azure-pipelines/scripts/publish-codecov.sh b/.azure-pipelines/scripts/publish-codecov.sh
index 7aeabda0c02..6d184f0b8da 100755
--- a/.azure-pipelines/scripts/publish-codecov.sh
+++ b/.azure-pipelines/scripts/publish-codecov.sh
@@ -7,7 +7,7 @@ set -o pipefail -eu
output_path="$1"
-curl --silent --show-error https://codecov.io/bash > codecov.sh
+curl --silent --show-error https://ansible-ci-files.s3.us-east-1.amazonaws.com/codecov/codecov.sh > codecov.sh
for file in "${output_path}"/reports/coverage*.xml; do
name="${file}"