From e190fed408166fce6f719e29c99a6795e77f3156 Mon Sep 17 00:00:00 2001 From: Magnus Kulke Date: Tue, 12 Mar 2024 10:58:35 +0100 Subject: [PATCH] ci: update deb sources in azure podvm build There was an apt-get update statement missing that is causing CI failures. Signed-off-by: Magnus Kulke --- .github/workflows/azure-podvm-image-build.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/azure-podvm-image-build.yml b/.github/workflows/azure-podvm-image-build.yml index b3aeb381f..8d2bd5199 100644 --- a/.github/workflows/azure-podvm-image-build.yml +++ b/.github/workflows/azure-podvm-image-build.yml @@ -79,7 +79,8 @@ jobs: - name: Install build dependencies run: | - sudo apt-get install \ + sudo apt-get update + sudo apt-get install -y \ clang \ gcc \ libdevmapper-dev \