From 7dcf9f1ad34e347595353113cc544f46811ed7e3 Mon Sep 17 00:00:00 2001 From: Alexander Barton Date: Sun, 21 Jan 2024 01:36:05 +0100 Subject: [PATCH 1/1] CI: Looks like "cache-apt-pkgs-action" needs exact package names And list only one package per line; way easier to read and maintain :-) --- .github/workflows/ci.yml | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3d24ea19..7fa5fb38 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -37,7 +37,18 @@ jobs: - uses: actions/checkout@v4 - uses: awalsh128/cache-apt-pkgs-action@v1 with: - packages: autoconf automake build-essential expect libident-dev libpam-dev libssl-dev libwrap0-dev libz-dev pkg-config telnet + packages: > + autoconf + automake + build-essential + expect + libident-dev + libpam0g-dev + libssl-dev + libwrap0-dev + pkg-config + telnet + zlib1g-dev version: 1.0 - name: Generate build system files run: ./autogen.sh -- 2.39.2