From de5d02da00e771a96203a3d971cbebaaa2965912 Mon Sep 17 00:00:00 2001 From: Dennis Kobert Date: Tue, 3 Jan 2023 10:04:42 +0100 Subject: [PATCH] Manually install packages instead of using github action (#943) Fixes the fact that CI randomly stopped working on existing code in master that already passed CI --- .github/workflows/ci.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 89a4b1b0..2999da6a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -28,10 +28,7 @@ jobs: npm ci - name: 🔧 Install libgtk - uses: awalsh128/cache-apt-pkgs-action@latest - with: - packages: libgtk-3-dev libssl-dev build-essential curl wget libayatana-appindicator3-dev librsvg2-dev libsoup2.4-dev libjavascriptcoregtk-4.0-dev libwebkit2gtk-4.0-dev - version: 1.0 + run: sudo apt install -y libgtk-3-dev libssl-dev build-essential curl wget libayatana-appindicator3-dev librsvg2-dev libsoup2.4-dev libjavascriptcoregtk-4.0-dev libwebkit2gtk-4.0-dev - name: 🔼 Update Rust to latest stable run: |