Skip to content

Commit d4159ec

Browse files
ci: avoid running Ruby 3.0 or older against openssl 3
Those versions do not support OpenSSL 3 so those jobs are failing. For reference: - https://github.com/ruby/openssl/blob/080b21d/README.md#compatibility-and-maintenance-policy - https://www.rubyonmac.dev/openssl-versions-supported-by-ruby
1 parent cff7c16 commit d4159ec

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

.github/workflows/build.yml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,6 @@ jobs:
2424
- '3.3'
2525
- '3.2'
2626
- '3.1'
27-
- '3.0'
28-
- '2.7'
29-
- '2.6'
30-
- '2.5'
3127
openssl:
3228
- '3.5.0'
3329
- '3.4.1'
@@ -38,6 +34,14 @@ jobs:
3834
- '1.1.1w'
3935
include:
4036
- ruby: truffleruby
37+
- ruby: '3.0'
38+
openssl: '1.1.1w'
39+
- ruby: '2.7'
40+
openssl: '1.1.1w'
41+
- ruby: '2.6'
42+
openssl: '1.1.1w'
43+
- ruby: '2.5'
44+
openssl: '1.1.1w'
4145

4246
steps:
4347
- uses: actions/checkout@v4

0 commit comments

Comments
 (0)