From f58abb5196c405920ebd584354bc2cb014a92ee5 Mon Sep 17 00:00:00 2001 From: Bernd Hufmann Date: Fri, 11 Oct 2024 12:38:23 -0400 Subject: [PATCH] Add libsecret-1-dev to ubuntu image to ci-cd workflow Latest is now Ubuntu 24.04 and the runner doesn't include this library. Signed-off-by: Bernd Hufmann --- .github/workflows/ci-cd.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci-cd.yml b/.github/workflows/ci-cd.yml index 370a3d86..17b07280 100644 --- a/.github/workflows/ci-cd.yml +++ b/.github/workflows/ci-cd.yml @@ -24,7 +24,7 @@ jobs: - name: install dependencies on ubuntu if: startsWith(matrix.os,'ubuntu') run: | - sudo apt install -y make gcc pkg-config build-essential libx11-dev libxkbfile-dev + sudo apt install -y make gcc pkg-config build-essential libx11-dev libxkbfile-dev libsecret-1-dev - uses: actions/checkout@v4