From e8369f568aebe5e9d7f4966f6f17d4eec2fb86e6 Mon Sep 17 00:00:00 2001 From: Stefan Topfstedt Date: Wed, 21 Aug 2024 12:21:41 -0700 Subject: [PATCH] downgrade PHP versions in CI PHP 8.3 is not officially supported for M4.3. The only reason why this didn't blow up in the CI is b/c we don't have any tests in this branch, so it didn't attempt to install build-breaking dependencies that come with test coverage. --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 790899e..cb9bc43 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -36,7 +36,7 @@ jobs: strategy: fail-fast: false matrix: - php: ["8.2", "8.3"] + php: ["8.1", "8.2"] moodle-branch: ["MOODLE_403_STABLE"] database: [pgsql, mariadb]