From: Ilia Shipitsin Date: Wed, 26 Apr 2023 10:12:54 +0000 (+0200) Subject: CI: switch to Fastly CDN to download LibreSSL X-Git-Tag: v2.8-dev9~28 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=156c4b3439023beed151bd4e36b65a6583d14027;p=thirdparty%2Fhaproxy.git CI: switch to Fastly CDN to download LibreSSL OpenBSD ftp is down, let us switch to mirror --- diff --git a/.github/matrix.py b/.github/matrix.py index a0e90bc2db..a2a02e9684 100755 --- a/.github/matrix.py +++ b/.github/matrix.py @@ -51,7 +51,7 @@ def determine_latest_openssl(ssl): @functools.lru_cache(5) def determine_latest_libressl(ssl): libressl_download_list = urllib.request.urlopen( - "http://ftp.openbsd.org/pub/OpenBSD/LibreSSL/" + "https://cdn.openbsd.org/pub/OpenBSD/LibreSSL/" ) for line in libressl_download_list.readlines(): decoded_line = line.decode("utf-8")