From d74be5a1774c52e9cef0c3bd61d17cfab056811b Mon Sep 17 00:00:00 2001 From: Ferdinand Thiessen Date: Sat, 18 Jan 2025 14:07:49 +0100 Subject: [PATCH] fix: Update MariaDB versions to supported versions of Nextcloud 31 For the upcoming release we should make sure to test the supported versions. Lower bound is 10.6 and upper bound is 11.4 Signed-off-by: Ferdinand Thiessen --- workflow-templates/phpunit-mariadb.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/workflow-templates/phpunit-mariadb.yml b/workflow-templates/phpunit-mariadb.yml index 597ca1c5..37ae1e31 100644 --- a/workflow-templates/phpunit-mariadb.yml +++ b/workflow-templates/phpunit-mariadb.yml @@ -70,7 +70,7 @@ jobs: matrix: php-versions: ${{ fromJson(needs.matrix.outputs.php-version) }} server-versions: ${{ fromJson(needs.matrix.outputs.server-max) }} - mariadb-versions: ['10.6', '10.11'] + mariadb-versions: ['10.6', '11.4'] name: MariaDB ${{ matrix.mariadb-versions }} PHP ${{ matrix.php-versions }} Nextcloud ${{ matrix.server-versions }}