Skip to content

Commit b1bfe8a

Browse files
authored
Merge pull request #763 from KJTsanaktsidis/ktsanaktsidis/fix_openssl_downloads
Don't download OpenSSL from ftp.openssl.org anyomre
2 parents 818aa9f + 64c5011 commit b1bfe8a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -88,9 +88,9 @@ jobs:
8888
- { os: ubuntu-latest, ruby: "3.0", openssl: openssl-3.1.5, fips-enabled: true, append-configure: 'enable-fips', name-extra: 'fips' }
8989
- { os: ubuntu-latest, ruby: "3.0", openssl: openssl-3.2.1, fips-enabled: true, append-configure: 'enable-fips', name-extra: 'fips' }
9090
- { os: ubuntu-latest, ruby: "3.0", openssl: openssl-3.3.0, fips-enabled: true, append-configure: 'enable-fips', name-extra: 'fips' }
91-
- { os: ubuntu-latest, ruby: "3.0", openssl: openssl-head, git: 'git://git.openssl.org/openssl.git', branch: 'master' }
92-
- { os: ubuntu-latest, ruby: "3.0", openssl: openssl-head, git: 'git://git.openssl.org/openssl.git', branch: 'master', fips-enabled: true, append-configure: 'enable-fips', name-extra: 'fips' }
93-
- { os: ubuntu-latest, ruby: "3.0", openssl: openssl-head, git: 'git://git.openssl.org/openssl.git', branch: 'master', append-configure: 'no-legacy', name-extra: 'no-legacy' }
91+
- { os: ubuntu-latest, ruby: "3.0", openssl: openssl-head, git: 'https://github.com/openssl/openssl.git', branch: 'master' }
92+
- { os: ubuntu-latest, ruby: "3.0", openssl: openssl-head, git: 'https://github.com/openssl/openssl.git', branch: 'master', fips-enabled: true, append-configure: 'enable-fips', name-extra: 'fips' }
93+
- { os: ubuntu-latest, ruby: "3.0", openssl: openssl-head, git: 'https://github.com/openssl/openssl.git', branch: 'master', append-configure: 'no-legacy', name-extra: 'no-legacy' }
9494
steps:
9595
- name: repo checkout
9696
uses: actions/checkout@v4
@@ -103,7 +103,7 @@ jobs:
103103
case ${{ matrix.openssl }} in
104104
openssl-*)
105105
if [ -z "${{ matrix.git }}" ]; then
106-
curl -OL https://ftp.openssl.org/source/${{ matrix.openssl }}.tar.gz
106+
curl -OL https://openssl.org/source/${{ matrix.openssl }}.tar.gz
107107
tar xf ${{ matrix.openssl }}.tar.gz && cd ${{ matrix.openssl }}
108108
else
109109
git clone -b ${{ matrix.branch }} --depth 1 ${{ matrix.git }} ${{ matrix.openssl }}

0 commit comments

Comments
 (0)