diff options
author | Andy Scherzinger <info@andy-scherzinger.de> | 2024-05-11 16:42:12 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-11 16:42:12 +0200 |
commit | 4560ddd706d2ced7fb47487cf57095513ae2de70 (patch) | |
tree | 94d1b2fd22c6d7251e4f690e35162e6cd0e5b2c8 /.github | |
parent | b0429e7ef48b261f91786f3d0b011e57c8736ac1 (diff) | |
parent | 29157149c854bbbb3e0a1156ce71ea69e18313dc (diff) | |
download | nextcloud-server-4560ddd706d2ced7fb47487cf57095513ae2de70.tar.gz nextcloud-server-4560ddd706d2ced7fb47487cf57095513ae2de70.zip |
Merge pull request #45241 from nextcloud/checks-db-versions
fix(setupChecks): update db version checks
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/phpunit-pgsql.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/phpunit-pgsql.yml b/.github/workflows/phpunit-pgsql.yml index b845765ca38..63fc66a1a74 100644 --- a/.github/workflows/phpunit-pgsql.yml +++ b/.github/workflows/phpunit-pgsql.yml @@ -53,11 +53,11 @@ jobs: strategy: matrix: php-versions: ['8.1'] - # To keep the matrix smaller we ignore PostgreSQL '11', '13', '14' as we already test 10 and 15 as lower and upper bound - postgres-versions: ['10', '15', '16'] + # To keep the matrix smaller we ignore PostgreSQL '13', '14', and '15' as we already test 12 and 16 as lower and upper bound + postgres-versions: ['12', '16'] include: - php-versions: '8.3' - postgres-versions: '15' + postgres-versions: '16' coverage: ${{ github.event_name != 'pull_request' }} name: PostgreSQL ${{ matrix.postgres-versions }} (PHP ${{ matrix.php-versions }}) - database tests |