Skip to content

Commit 4f4a729

Browse files
KJTsanaktsidisrhenium
authored andcommitted
Don't download OpenSSL from ftp.openssl.org anyomre
[ This is a backport to the 3.0 branch. ] OpenSSL announced that they're changing how they handle releases in this blog post: https://openssl.org/blog/blog/2024/04/30/releases-distribution-changes/ The tl;dr is that: * ftp.openssl.org is being shut down (even for HTTP access) * The releases at openssl.org/source will redirect to github * git.openssl.org is also shut down (the git repo is on github) This commit just changes over to using openss.org/source instead of ftp.openssl.org. We might also need to switch to downloading directly from Github... let's see. It also changes to cloning the head of openssl from github too. (cherry picked from commit 64c5011)
1 parent 3b71ccf commit 4f4a729

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ jobs:
9898
case ${{ matrix.openssl }} in
9999
openssl-*)
100100
if [ -z "${{ matrix.git }}" ]; then
101-
curl -OL https://ftp.openssl.org/source/${{ matrix.openssl }}.tar.gz
101+
curl -OL https://openssl.org/source/${{ matrix.openssl }}.tar.gz
102102
tar xf ${{ matrix.openssl }}.tar.gz && cd ${{ matrix.openssl }}
103103
else
104104
git clone -b ${{ matrix.branch }} --depth 1 ${{ matrix.git }} ${{ matrix.openssl }}

0 commit comments

Comments
 (0)