From c6b84ccf8d34437ea406a2873484380d12d3a213 Mon Sep 17 00:00:00 2001 From: Andrew Cooper Date: Tue, 5 Nov 2024 20:30:26 +0000 Subject: [PATCH] CI: Fix package installation for Coverity run MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Something has changed recently in the Github Actions environment and the golang metapacakge resolves to something that no longer exists: https://github.com/xen-project/xen/actions/runs/11539340171/job/32120834909 Update the apt package index before installing, which fixes things. Signed-off-by: Andrew Cooper Acked-by: Roger Pau Monné Acked-by: Stefano Stabellini --- .github/workflows/coverity.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/coverity.yml b/.github/workflows/coverity.yml index 984636eb46..a6c2819b0a 100644 --- a/.github/workflows/coverity.yml +++ b/.github/workflows/coverity.yml @@ -12,6 +12,7 @@ jobs: steps: - name: Install build dependencies run: | + sudo apt-get update sudo apt-get install -y \ build-essential \ git-core \ -- 2.39.5