瀏覽代碼

Merge pull request #101363 from akien-mga/ci-apt-direct

CI: Install apt dependencies directly, works around issue with `awalsh128/cache-apt-pkgs-action`
Rémi Verschelde 6 月之前
父節點
當前提交
24d74510e5
共有 1 個文件被更改,包括 2 次插入3 次删除
  1. 2 3
      .github/workflows/static_checks.yml

+ 2 - 3
.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: |