From 07a0042520df12b5682d008c8a8f9e3e30f47b23 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20Guillot?= Date: Fri, 7 Jul 2023 19:49:07 -0700 Subject: [PATCH] Integration Tests: Run apt update before installing Apache --- .github/workflows/integration_tests.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/integration_tests.yml b/.github/workflows/integration_tests.yml index 18cd1c492..365e42fb2 100644 --- a/.github/workflows/integration_tests.yml +++ b/.github/workflows/integration_tests.yml @@ -41,6 +41,8 @@ jobs: run: composer validate - name: Install dependencies run: composer install --prefer-dist --no-progress --no-suggest + - name: Refresh APT index + run: sudo apt update - name: Install Apache PHP module run: sudo apt install -y libapache2-mod-php - name: Start Apache