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.openwrt.org/?a=commitdiff_plain;h=532ac744dedcf83c06e2f4a8320fcc8089f23b72;p=project%2Flibnl-tiny.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 18eedad..072d9d5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -39,6 +39,7 @@ jobs: - name: Install dependencies run: | + sudo apt update sudo apt install ${{ matrix.packages }} - name: Prepare build