From: Andrew Cooper Date: Tue, 5 Nov 2024 20:30:26 +0000 (+0000) Subject: CI: Fix package installation for Coverity run X-Git-Tag: 4.20.0-rc1~232 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=c6b84ccf8d34437ea406a2873484380d12d3a213;p=xen.git CI: Fix package installation for Coverity run 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 --- 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 \