From 746e697f493f94139e5cb9c01f389449e5dce1e3 Mon Sep 17 00:00:00 2001 From: Dino Pacandi Date: Thu, 16 Jan 2025 18:45:18 +0100 Subject: [PATCH] Fix --- .github/workflows/coverage.yaml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/coverage.yaml b/.github/workflows/coverage.yaml index 97c24279b..c51ab4055 100644 --- a/.github/workflows/coverage.yaml +++ b/.github/workflows/coverage.yaml @@ -40,12 +40,11 @@ jobs: restore-keys: | ${{ runner.os }}-cargo- -# TODO: get rid of old libssl1.1_1.1.0g-2ubuntu4_amd64.deb after tarpaulin is removed + # TODO: get rid of old libssl1.1_1.1.0g-2ubuntu4_amd64.deb after tarpaulin is removed - name: Install deps run: | sudo apt -y install protobuf-compiler - wget http://archive.ubuntu.com/ubuntu/pool/main/o/openssl/libssl1.1_1.1.0g-2ubuntu4_amd64.deb - sudo dpkg -i libssl1.1_1.1.0g-2ubuntu4_amd64.deb + sudo apt-get install -y libssl1.1 - name: Run all tests & Generate report uses: actions-rs/tarpaulin@v0.1