From d8c52fedc58584febdf54f8e86ebb6b6749e170d Mon Sep 17 00:00:00 2001 From: downtownallday Date: Mon, 23 Aug 2021 12:58:42 -0400 Subject: [PATCH] Try using nanasess/setup-php action to resolve issue where setup/webmail.sh, which runs the roundcubemail/bin/updatedb.sh script, fails with "Unsupported PHP version. Required PHP >= 5.4 and < 8.0" indicating that PHP >= 8.0 is actually installed! --- .github/workflows/run-tests.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 08837938..d283790a 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -9,6 +9,10 @@ jobs: FEATURE_MUNIN: false steps: - uses: actions/checkout@v2 + # without nanasess/setup-pup setup/webmail.sh returns "Unsupported PHP version. Required PHP >= 5.4 and < 8.0", which is generated by roundcubemail/program/include/iniset.php indicating that PHP >= 8.0 + - uses: nanasess/setup-php@master + with: + php-version: '7.2' - name: setup run: sudo -E tests/system-setup/remote-nextcloud-docker.sh upgrade basic - name: test-runner