From 7054e1e6da59b4f7bc65755aa515b4a9a16b66c5 Mon Sep 17 00:00:00 2001 From: Matt Friedman Date: Fri, 18 Sep 2026 16:48:12 -0700 Subject: [PATCH] Remove Postgres 9 and Mariadb < 10.4 --- .github/workflows/tests.yml | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index e42e1ad..82d413b 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -177,10 +177,6 @@ jobs: php: ${{ fromJSON(inputs.PHP_VERSION_MATRIX) }} db: ['mysql:8.4', 'mysql:9.4'] include: - - php: ${{ inputs.PRIMARY_PHP_VERSION }} - db: 'mariadb:10.2' - - php: ${{ inputs.PRIMARY_PHP_VERSION }} - db: 'mariadb:10.3' - php: ${{ inputs.PRIMARY_PHP_VERSION }} db: 'mariadb:10.4' - php: ${{ inputs.PRIMARY_PHP_VERSION }} @@ -372,12 +368,8 @@ jobs: strategy: matrix: php: ${{ fromJSON(inputs.PHP_VERSION_MATRIX) }} - db: ['postgres:9.5'] + db: ['postgres:10'] include: - - php: ${{ inputs.PRIMARY_PHP_VERSION }} - db: 'postgres:9.6' - - php: ${{ inputs.PRIMARY_PHP_VERSION }} - db: 'postgres:10' - php: ${{ inputs.PRIMARY_PHP_VERSION }} db: 'postgres:11' - php: ${{ inputs.PRIMARY_PHP_VERSION }} @@ -393,7 +385,7 @@ jobs: services: postgres: - image: ${{ matrix.db != 'postgres:9.5' && matrix.db != 'postgres:9.6' && matrix.db != 'postgres:10' && matrix.db != 'postgres:11' && matrix.db != 'postgres:12' && matrix.db != 'postgres:13' && matrix.db != 'postgres:14' && matrix.db != 'postgres:15' && 'postgres:10' || matrix.db }} + image: ${{ matrix.db != 'postgres:10' && matrix.db != 'postgres:11' && matrix.db != 'postgres:12' && matrix.db != 'postgres:13' && matrix.db != 'postgres:14' && matrix.db != 'postgres:15' && 'postgres:10' || matrix.db }} env: POSTGRES_HOST: localhost POSTGRES_USER: postgres