From 9d620630ea30386d7fc2ff192656a9051b6dc6b5 Mon Sep 17 00:00:00 2001 From: David Marchand Date: Sat, 19 Dec 2020 09:05:33 +0100 Subject: [PATCH] ci: fix package installation in GitHub Actions APT cache must be updated to avoid trying to install an unavailable version of a package. Fixes: 87009585e293 ("ci: hook to GitHub Actions") Signed-off-by: David Marchand --- .github/workflows/build.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 05eb59527f..0b72df0ebe 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -87,6 +87,8 @@ jobs: with: path: reference key: ${{ steps.get_ref_keys.outputs.abi }} + - name: Update APT cache + run: sudo apt update - name: Install packages run: sudo apt install -y ccache libnuma-dev python3-setuptools python3-wheel python3-pip ninja-build libbsd-dev libpcap-dev -- 2.20.1