Skip to content

Commit 7407e3f

Browse files
authored
Merge pull request #572 from MSP-Greg/maint-2.2-actions
maint-2.2 Actions - update workflow to use OpenSSL 1.1.1, actions/checkout@v3
2 parents 3291a92 + a33427c commit 7407e3f

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

.github/workflows/test.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,12 @@ jobs:
1010
strategy:
1111
fail-fast: false
1212
matrix:
13-
os: [ ubuntu-latest, macos-latest ]
13+
# ubuntu-latest is 22.04, uses OpenSSL 3
14+
os: [ ubuntu-20.04, macos-latest ]
1415
ruby: [ head, "3.0", "2.7", "2.6", "2.5", "2.4", "2.3" ]
1516
steps:
1617
- name: repo checkout
17-
uses: actions/checkout@v2
18+
uses: actions/checkout@v3
1819

1920
- name: load ruby
2021
uses: ruby/setup-ruby@v1
@@ -38,12 +39,11 @@ jobs:
3839
fail-fast: false
3940
matrix:
4041
os: [ windows-latest ]
41-
ruby: [ mswin, mingw, "3.0", "2.7", "2.6", "2.5", "2.4", "2.3" ]
42-
exclude:
43-
- { os: "windows-latest", ruby: "mswin" } # OpenSSL 3.0
42+
# current mswin build uses OpenSSL 3
43+
ruby: [ mingw, "3.0", "2.7", "2.6", "2.5", "2.4", "2.3" ]
4444
steps:
4545
- name: repo checkout
46-
uses: actions/checkout@v2
46+
uses: actions/checkout@v3
4747

4848
- name: load ruby, install/update gcc, install openssl
4949
uses: MSP-Greg/setup-ruby-pkgs@v1
@@ -82,7 +82,7 @@ jobs:
8282
- libressl-3.3.4
8383
steps:
8484
- name: repo checkout
85-
uses: actions/checkout@v2
85+
uses: actions/checkout@v3
8686

8787
- name: prepare openssl
8888
run: |

0 commit comments

Comments
 (0)