From 772da856984b42cda67426f8bbce3a6893faa51f Mon Sep 17 00:00:00 2001 From: Kleis Auke Wolthuizen Date: Fri, 16 May 2025 15:38:59 +0200 Subject: [PATCH] CI: run `apt-get update` before installing libvips --- .github/workflows/ci.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 16248b1..cdc293e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -30,8 +30,10 @@ jobs: - name: Checkout code uses: actions/checkout@v4 - - name: Install vips - run: sudo apt install -y --no-install-recommends libvips + - name: Install libvips + run: | + sudo apt-get update + sudo apt-get install --no-install-recommends libvips - name: Install composer dependencies run: |