From 89be0342031aa6f135aa85d30c5beb86089e6c81 Mon Sep 17 00:00:00 2001 From: Suraj Deshmukh Date: Tue, 15 Aug 2023 21:56:00 +0000 Subject: [PATCH] static-checks: Install devmapper libraries After image-rs added the image-block-device integrity check using dm-verity a new dependency is now needed, so install that. Refer the following PR for more information: https://github.com/confidential-containers/guest-components/pull/270 Fixes: #7580 Signed-off-by: Suraj Deshmukh --- .github/workflows/static-checks.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/static-checks.yaml b/.github/workflows/static-checks.yaml index 54e4ee47956a..67b1cd180f73 100644 --- a/.github/workflows/static-checks.yaml +++ b/.github/workflows/static-checks.yaml @@ -39,7 +39,10 @@ jobs: - name: Install dependencies run: | sudo apt-get update - sudo apt-get install -y --no-install-recommends build-essential haveged + sudo apt-get install -y --no-install-recommends \ + build-essential \ + haveged \ + libdevmapper-dev - name: Install Go uses: actions/setup-go@v3 with: