Skip to content

Commit cc3a7f6

Browse files
committed
Merge branch 'maint-3.1' into maint-3.2
* maint-3.1: Don't download OpenSSL from ftp.openssl.org anyomre
2 parents cd76116 + ae4a27a commit cc3a7f6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -90,8 +90,8 @@ jobs:
9090
include:
9191
- { os: ubuntu-latest, ruby: "3.0", openssl: openssl-3.0.10, fips-enabled: true, append-configure: 'enable-fips', name-extra: 'fips' }
9292
- { os: ubuntu-latest, ruby: "3.0", openssl: openssl-3.1.2, 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' }
94-
- { 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: 'https://github.com/openssl/openssl.git', branch: 'master' }
94+
- { 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' }
9595
steps:
9696
- name: repo checkout
9797
uses: actions/checkout@v4
@@ -104,7 +104,7 @@ jobs:
104104
case ${{ matrix.openssl }} in
105105
openssl-*)
106106
if [ -z "${{ matrix.git }}" ]; then
107-
curl -OL https://ftp.openssl.org/source/${{ matrix.openssl }}.tar.gz
107+
curl -OL https://openssl.org/source/${{ matrix.openssl }}.tar.gz
108108
tar xf ${{ matrix.openssl }}.tar.gz && cd ${{ matrix.openssl }}
109109
else
110110
git clone -b ${{ matrix.branch }} --depth 1 ${{ matrix.git }} ${{ matrix.openssl }}

0 commit comments

Comments
 (0)