diff options
| author | Alexander Barton <alex@barton.de> | 2024-01-21 01:36:05 +0100 |
|---|---|---|
| committer | Alexander Barton <alex@barton.de> | 2024-01-21 01:37:52 +0100 |
| commit | 7dcf9f1ad34e347595353113cc544f46811ed7e3 (patch) | |
| tree | d67b8ccd76af0f53d7f69bae9e007c57d4f95422 /.github/workflows | |
| parent | 2984dad8b4bd259db6501e45df52378b2da5ff2f (diff) | |
| download | ngircd-7dcf9f1ad34e347595353113cc544f46811ed7e3.tar.gz ngircd-7dcf9f1ad34e347595353113cc544f46811ed7e3.zip | |
CI: Looks like "cache-apt-pkgs-action" needs exact package names
And list only one package per line; way easier to read and maintain :-)
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/ci.yml | 13 |
1 files changed, 12 insertions, 1 deletions
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 |