aboutsummaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorJosh <josh.t.richards@gmail.com>2024-05-10 09:06:34 -0400
committerJosh <josh.t.richards@gmail.com>2024-05-10 16:41:29 -0400
commit7d7ae250d2c6430da3294fd3a9da4c514933638a (patch)
treedc87d4f0dfeca917658b43ab3a3db77c0d5c67d7 /.github
parent2e94ec883264b3159938965e78332e892605d2c8 (diff)
downloadnextcloud-server-7d7ae250d2c6430da3294fd3a9da4c514933638a.tar.gz
nextcloud-server-7d7ae250d2c6430da3294fd3a9da4c514933638a.zip
fix(phpunit-pgsql): master/v30 only supports pgsql 12-16; drop 10
Signed-off-by: Josh <josh.t.richards@gmail.com>
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/phpunit-pgsql.yml6
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