diff options
| author | Álvaro Fernández Rojas | 2025-11-03 06:38:52 +0000 |
|---|---|---|
| committer | Álvaro Fernández Rojas | 2025-11-03 07:07:46 +0000 |
| commit | 532ac744dedcf83c06e2f4a8320fcc8089f23b72 (patch) | |
| tree | 983acbde93c966849411b01ee5da7a7086a1842a | |
| parent | c69fb5ef80b9780fe9add345052aef9ccb5d51f4 (diff) | |
| download | libnl-tiny-532ac744dedcf83c06e2f4a8320fcc8089f23b72.tar.gz | |
github: fix CI apt dependencies
We need to run 'apt update' before installing the APT packages.
Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
| -rw-r--r-- | .github/workflows/ci.yml | 1 |
1 files changed, 1 insertions, 0 deletions
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 |