From 829ad307f8c06134229256d0fc564fabd4e8826b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Verschelde?= Date: Thu, 9 Jan 2025 19:56:08 +0100 Subject: [PATCH] CI: Install apt dependencies directly, works around issue with awalsh128/cache-apt-pkgs-action --- .github/workflows/static_checks.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/static_checks.yml b/.github/workflows/static_checks.yml index 27580f7c7f12..65344a32c4ae 100644 --- a/.github/workflows/static_checks.yml +++ b/.github/workflows/static_checks.yml @@ -13,9 +13,8 @@ jobs: fetch-depth: 2 - name: Install APT dependencies - uses: awalsh128/cache-apt-pkgs-action@latest - with: - packages: libxml2-utils + run: | + sudo apt install -y libxml2-utils - name: Install Python dependencies and general setup run: |