We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b4fe01f commit f8fccf8Copy full SHA for f8fccf8
.github/workflows/tests.yml
@@ -14,11 +14,22 @@ on:
14
15
jobs:
16
tests:
17
- runs-on: ubuntu-22.04
+ runs-on: ubuntu-24.04
18
strategy:
19
matrix:
20
node-version: [16.x, 18.x, 20.x, 22.x]
21
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
33
- uses: actions/checkout@v4
34
if: github.event.inputs.git-ref == ''
35
with:
0 commit comments