From 9fb4b395295dba5510b697e7efd55a3fcfab1901 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Wielgosz?= Date: Wed, 13 Nov 2024 12:37:37 +0100 Subject: [PATCH] Use curl instead of wget because it is not bundled in self-hosted runner image --- scripts/unixish.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/unixish.sh b/scripts/unixish.sh index e7f28c5..37d480a 100755 --- a/scripts/unixish.sh +++ b/scripts/unixish.sh @@ -74,7 +74,7 @@ echo '::group::Downloading yq' echo "Src: ${_dl_url}" echo "Dst: ${_dl_path}" -wget -O- "${_dl_url}" > "${_dl_path}" +curl -L "${_dl_url}" -o "${_dl_path}" echo '::endgroup::'