Skip to content

Commit bc07112

Browse files
committed
chore: install openssl
1 parent 40ee6d8 commit bc07112

File tree

1 file changed

+20
-4
lines changed

1 file changed

+20
-4
lines changed

.github/workflows/ci.yml

Lines changed: 20 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,13 @@ jobs:
5151

5252
steps:
5353
- uses: actions/checkout@v4
54+
- name: Install OpenSSL
55+
run: |
56+
sudo apt-get update
57+
sudo apt-get install -y libssl3
5458
- id: beam
5559
env:
56-
ImageOS: ubuntu20
60+
ImageOS: ubuntu22
5761
uses: erlef/[email protected]
5862
with:
5963
otp-version: ${{ env.OTP_VERSION }}
@@ -80,9 +84,13 @@ jobs:
8084

8185
steps:
8286
- uses: actions/checkout@v4
87+
- name: Install OpenSSL
88+
run: |
89+
sudo apt-get update
90+
sudo apt-get install -y libssl3
8391
- id: beam
8492
env:
85-
ImageOS: ubuntu20
93+
ImageOS: ubuntu22
8694
uses: erlef/[email protected]
8795
with:
8896
otp-version: ${{ env.OTP_VERSION }}
@@ -109,9 +117,13 @@ jobs:
109117

110118
steps:
111119
- uses: actions/checkout@v4
120+
- name: Install OpenSSL
121+
run: |
122+
sudo apt-get update
123+
sudo apt-get install -y libssl3
112124
- id: beam
113125
env:
114-
ImageOS: ubuntu20
126+
ImageOS: ubuntu22
115127
uses: erlef/[email protected]
116128
with:
117129
otp-version: ${{ env.OTP_VERSION }}
@@ -138,9 +150,13 @@ jobs:
138150

139151
steps:
140152
- uses: actions/checkout@v4
153+
- name: Install OpenSSL
154+
run: |
155+
sudo apt-get update
156+
sudo apt-get install -y libssl3
141157
- id: beam
142158
env:
143-
ImageOS: ubuntu20
159+
ImageOS: ubuntu22
144160
uses: erlef/[email protected]
145161
with:
146162
otp-version: ${{ env.OTP_VERSION }}

0 commit comments

Comments
 (0)