From 826a0354fb6daf2239daa83abbc18fa9907fe573 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Verschelde?= Date: Sun, 2 Mar 2025 22:34:02 +0100 Subject: [PATCH] CI: Run `apt install` before installing libxml2-utils, GHA cache got flaky --- .github/workflows/static_checks.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/static_checks.yml b/.github/workflows/static_checks.yml index ad7f7aa6ceb..68dcb1049b8 100644 --- a/.github/workflows/static_checks.yml +++ b/.github/workflows/static_checks.yml @@ -15,6 +15,7 @@ jobs: - name: Install APT dependencies run: | + sudo apt update sudo apt install -y libxml2-utils - name: Install Python dependencies and general setup