From 1411eaddfabaf68a5b72aac41d40241b35968bdb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Palancher?= Date: Fri, 24 Jan 2025 09:26:18 +0100 Subject: [PATCH] chore(ci): run apt update before install During some runs, apt-get install fails on 404 due to packages not found in remote ubuntu repositories. This is generally due to out-of-date repository metadata and is fixed by a simple update. --- .github/workflows/ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c64ef0f7..55dd4543 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -31,6 +31,7 @@ jobs: - name: Install tests dependencies run: | + sudo apt-get update sudo apt-get install -y build-essential python3-dev libldap2-dev libsasl2-dev libcairo2-dev libgirepository1.0-dev libpango1.0-dev python -m pip install --upgrade pip