use curl instead of wget to fix failure on macOS runners (#8)

This commit is contained in:
akhil
2023-09-29 22:34:15 +05:30
committed by GitHub
parent ff922c75b7
commit 1090b8bd11
2 changed files with 2 additions and 2 deletions

View File

@@ -73,7 +73,7 @@ echo '::group::Downloading jq'
echo "Src: ${_dl_url}"
echo "Dst: ${_dl_path}"
wget -O- "${_dl_url}" > "${_dl_path}"
curl -L "${_dl_url}" -o "${_dl_path}"
echo '::endgroup::'