From bba66d88ba87f1848c17eac7a103a2952da0297c Mon Sep 17 00:00:00 2001 From: Alan Antonuk Date: Tue, 24 Oct 2023 01:31:55 +0000 Subject: [PATCH] ci: fix broken packages in Github Actions Unconditionally sudo apt-get update to get the latest package listing which should correct issues with packages failing to install. --- .github/workflows/ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 33ca057e..460cebb4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -37,7 +37,9 @@ jobs: submodules: true - name: Install Prerequisites shell: bash - run: sudo apt install -y ninja-build libpopt-dev + run: | + sudo apt update + sudo apt install -y ninja-build libpopt-dev - name: Configure Build & Test shell: bash