From 88132a74454c091a3b7082565979717462be1f60 Mon Sep 17 00:00:00 2001 From: Luca Joss Date: Thu, 6 Jun 2024 16:35:53 +0200 Subject: [PATCH] Install libssl in Namada workflow --- .github/workflows/namada.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/namada.yaml b/.github/workflows/namada.yaml index ffeb67ce69..b8893073e4 100644 --- a/.github/workflows/namada.yaml +++ b/.github/workflows/namada.yaml @@ -63,8 +63,8 @@ jobs: - uses: actions-rust-lang/setup-rust-toolchain@v1 with: toolchain: stable - - name: Install libudev - run: sudo apt-get update && sudo apt-get -y install libudev-dev + - name: Install libudev and libssl + run: sudo apt-get update && sudo apt-get -y install libudev-dev libssl-dev - name: Install Protoc uses: heliaxdev/setup-protoc@v2 with: @@ -135,8 +135,8 @@ jobs: - uses: actions-rust-lang/setup-rust-toolchain@v1 with: toolchain: stable - - name: Install libudev - run: sudo apt-get update && sudo apt-get -y install libudev-dev + - name: Install libudev and libssl + run: sudo apt-get update && sudo apt-get -y install libudev-dev libssl-dev - name: Install Protoc uses: heliaxdev/setup-protoc@v2 with: