From: Martin Matuska Date: Fri, 14 Jul 2023 18:53:39 +0000 (+0200) Subject: CI: update apt cache on Ubuntu before build X-Git-Tag: v3.7.0~9 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c15d0021e2eb80919ed012d26d4858c8c251fa20;p=thirdparty%2Flibarchive.git CI: update apt cache on Ubuntu before build --- diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6701eafda..afcefd304 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -51,6 +51,8 @@ jobs: crypto: [mbedtls, nettle, openssl] steps: - uses: actions/checkout@master + - name: Update apt cache + run: sudo apt-get update - name: Install dependencies run: sudo apt-get install -y autoconf automake build-essential cmake git libssl-dev nettle-dev libmbedtls-dev libacl1-dev libbz2-dev liblzma-dev liblz4-dev libzstd-dev lzop pkg-config zlib1g-dev - name: Autogen @@ -87,6 +89,8 @@ jobs: runs-on: ubuntu-22.04 steps: - uses: actions/checkout@master + - name: Update package definitions + run: sudo apt-get update - name: Install dependencies run: sudo apt-get install -y autoconf automake bsdmainutils build-essential cmake ghostscript git groff libssl-dev libacl1-dev libbz2-dev liblzma-dev liblz4-dev libzstd-dev lzop pkg-config zip zlib1g-dev - name: Autogen