From: Álvaro Fernández Rojas Date: Mon, 3 Nov 2025 06:38:52 +0000 (+0100) Subject: github: fix CI apt dependencies X-Git-Url: http://git.cdn.openwrt.org/?a=commitdiff_plain;h=e357be611cd9deb280c61bbdf331f5a85e75a485;p=project%2Flibubox.git github: fix CI apt dependencies We need to run 'apt update' before installing the APT packages. Signed-off-by: Álvaro Fernández Rojas --- diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 208ad2d..21a0d4f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -56,6 +56,7 @@ jobs: - name: Install dependencies run: | + sudo apt update sudo apt install ${{ matrix.packages }} - name: Prepare build