Skip to content

Commit 1540038

Browse files
committed
feat: Update supportes PostgreSQL versions
Signed-off-by: provokateurin <kate@provokateurin.de>
1 parent e3edf43 commit 1540038

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/phpunit-pgsql.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -61,13 +61,13 @@ jobs:
6161
matrix:
6262
php-versions: ['8.2']
6363
# To keep the matrix smaller we ignore PostgreSQL versions in between as we already test the minimum and the maximum
64-
postgres-versions: ['13', '17']
64+
postgres-versions: ['14', '18']
6565
include:
6666
- php-versions: '8.3'
67-
postgres-versions: '17'
67+
postgres-versions: '18'
6868
coverage: ${{ github.event_name != 'pull_request' }}
6969
- php-versions: '8.4'
70-
postgres-versions: '17'
70+
postgres-versions: '18'
7171

7272
name: PostgreSQL ${{ matrix.postgres-versions }} (PHP ${{ matrix.php-versions }}) - database tests
7373

apps/settings/lib/SetupChecks/SupportedDatabase.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ class SupportedDatabase implements ISetupCheck {
2020
private const MAX_MARIADB = '11.8';
2121
private const MIN_MYSQL = '8.0';
2222
private const MAX_MYSQL = '8.4';
23-
private const MIN_POSTGRES = '13';
24-
private const MAX_POSTGRES = '17';
23+
private const MIN_POSTGRES = '14';
24+
private const MAX_POSTGRES = '18';
2525

2626
public function __construct(
2727
private IL10N $l10n,

0 commit comments

Comments
 (0)