Skip to content

Commit 4168997

Browse files
authored
Windows: Adapt to curl.se not providing any official 32-bit builds anymore (#4984)
1 parent 83362a7 commit 4168997

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/actions/1-setup/action.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,8 @@ runs:
161161
162162
url='https://curl.se/windows/latest.cgi?p=win64-mingw.zip'
163163
if [[ '${{ inputs.arch }}' == x86 ]]; then
164-
url='https://curl.se/windows/latest.cgi?p=win32-mingw.zip'
164+
# this is the latest *official* 32-bit build
165+
url='https://curl.se/windows/dl-8.15.0_5/curl-8.15.0_5-win32-mingw.zip'
165166
fi
166167
167168
curl -fL --retry 3 --max-time 60 -o libcurl.zip "$url"

0 commit comments

Comments
 (0)