From f03a17c01b1716721f2319e7378dd215414d99e1 Mon Sep 17 00:00:00 2001 From: Charles Fulton Date: Thu, 5 Dec 2024 13:05:55 -0500 Subject: [PATCH] MDL-83470 revise constraints for Moodle 5.0 --- .github/workflows/moodle-ci.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/moodle-ci.yml b/.github/workflows/moodle-ci.yml index b5a368c..29059c2 100644 --- a/.github/workflows/moodle-ci.yml +++ b/.github/workflows/moodle-ci.yml @@ -17,7 +17,7 @@ jobs: services: postgres: - image: postgres:13 + image: postgres:14 env: POSTGRES_USER: 'postgres' POSTGRES_HOST_AUTH_METHOD: 'trust' @@ -39,6 +39,9 @@ jobs: php: ['8.1', '8.2', '8.3'] moodle-branch: ['MOODLE_405_STABLE', 'main'] database: [pgsql, mariadb] + exclude: + - {moodle-branch: 'main', php: '8.1', database: 'pgsql'} + - {moodle-branch: 'main', php: '8.1', database: 'mariadb'} steps: - name: Check out repository code