Skip to content

Commit 3ccb316

Browse files
Merge pull request #53898 from nextcloud/ci-mariadb-118
ci: test against MariaDB 11.8 (latest LTS)
2 parents 993355a + 6b65031 commit 3ccb316

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/phpunit-mariadb.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,13 +60,13 @@ jobs:
6060
fail-fast: false
6161
matrix:
6262
php-versions: ['8.1']
63-
mariadb-versions: ['10.3', '10.6', '10.11', '11.4']
63+
mariadb-versions: ['10.3', '10.6', '10.11', '11.4', '11.8']
6464
include:
6565
- php-versions: '8.3'
6666
mariadb-versions: '10.11'
6767
coverage: ${{ github.event_name != 'pull_request' }}
6868
- php-versions: '8.4'
69-
mariadb-versions: '11.4'
69+
mariadb-versions: '11.8'
7070

7171
name: MariaDB ${{ matrix.mariadb-versions }} (PHP ${{ matrix.php-versions }}) - database tests
7272

apps/settings/lib/SetupChecks/SupportedDatabase.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
class SupportedDatabase implements ISetupCheck {
2222

2323
private const MIN_MARIADB = '10.6';
24-
private const MAX_MARIADB = '11.4';
24+
private const MAX_MARIADB = '11.8';
2525
private const MIN_MYSQL = '8.0';
2626
private const MAX_MYSQL = '8.4';
2727
private const MIN_POSTGRES = '13';

0 commit comments

Comments
 (0)