diff --git a/.github/workflows/node.yml b/.github/workflows/node.yml index 2e2a1c2815..744fad90d3 100644 --- a/.github/workflows/node.yml +++ b/.github/workflows/node.yml @@ -133,9 +133,6 @@ jobs: - name: Install Foundry uses: onbjerg/foundry-toolchain@v1 - - name: Configure libssl - run: ln -s /usr/lib/x86_64-linux-gnu/libssl.so.3 /usr/local/lib64/libssl.so.3 && sudo ldconfig - - uses: actions/cache@v3 with: path: ./* diff --git a/rust/Dockerfile b/rust/Dockerfile index 3ffc062de3..a0026db642 100644 --- a/rust/Dockerfile +++ b/rust/Dockerfile @@ -38,6 +38,7 @@ FROM ubuntu:20.04 RUN apt-get update && \ apt-get install -y \ openssl \ + libssl3 \ ca-certificates \ tini && \ rm -rf /var/lib/apt/lists/*