Skip to content

Commit f8fccf8

Browse files
committed
chore(workflows/tests): try upgrading to ubuntu 2404 with libssl1.1
1 parent b4fe01f commit f8fccf8

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

.github/workflows/tests.yml

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,22 @@ on:
1414

1515
jobs:
1616
tests:
17-
runs-on: ubuntu-22.04
17+
runs-on: ubuntu-24.04
1818
strategy:
1919
matrix:
2020
node-version: [16.x, 18.x, 20.x, 22.x]
2121
steps:
22+
- name: Load libssl chache
23+
id: cache-libssl
24+
uses: actions/cache@v4
25+
with:
26+
path: ~/ssl
27+
key: libssl
28+
- name: install libssl1.1
29+
run: |
30+
mkdir -p ~/ssl && cd ~/ssl
31+
wget -nc http://security.ubuntu.com/ubuntu/pool/main/o/openssl/libssl1.1_1.1.1f-1ubuntu2.22_amd64.deb
32+
dpkg -i libssl1.1_1.1.1f-1ubuntu2.22_amd64.deb
2233
- uses: actions/checkout@v4
2334
if: github.event.inputs.git-ref == ''
2435
with:

0 commit comments

Comments
 (0)