diff options
author | Ferdinand Thiessen <opensource@fthiessen.de> | 2024-11-13 02:50:13 +0100 |
---|---|---|
committer | Ferdinand Thiessen <opensource@fthiessen.de> | 2024-11-13 02:50:13 +0100 |
commit | a3e80e4195ee21e2ab5ba462ad4daa26086779bf (patch) | |
tree | 08215ce0521d16a7a1594dbcff4f65ff40dff05a /.github | |
parent | 397885adfadaf83434d032a250cb11260c66cad3 (diff) | |
download | nextcloud-server-a3e80e4195ee21e2ab5ba462ad4daa26086779bf.tar.gz nextcloud-server-a3e80e4195ee21e2ab5ba462ad4daa26086779bf.zip |
feat: Update supported PostgreSQL versionsfeat/postgres-13-17
12 is now EOL but 17 was released and should be supported and tested.
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/phpunit-pgsql.yml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/phpunit-pgsql.yml b/.github/workflows/phpunit-pgsql.yml index 118a09a93cc..b60c9d01b02 100644 --- a/.github/workflows/phpunit-pgsql.yml +++ b/.github/workflows/phpunit-pgsql.yml @@ -56,14 +56,14 @@ jobs: strategy: matrix: php-versions: ['8.1'] - # 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'] + # To keep the matrix smaller we ignore PostgreSQL versions in between as we already test the minimum and the maximum + postgres-versions: ['13', '17'] include: - php-versions: '8.3' - postgres-versions: '16' + postgres-versions: '17' coverage: ${{ github.event_name != 'pull_request' }} - php-versions: '8.4' - postgres-versions: '16' + postgres-versions: '17' name: PostgreSQL ${{ matrix.postgres-versions }} (PHP ${{ matrix.php-versions }}) - database tests |