From 3ec2ad99b1cbfd1b03f1ca0a11ea010cd4377201 Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Fri, 3 Mar 2023 10:50:46 +0100 Subject: [PATCH] chore(CI): Adjust testing matrix for Nextcloud 26 on stable26 Signed-off-by: Joas Schilling --- .github/workflows/cypress.yml | 2 +- .github/workflows/integration.yml | 4 ++-- .github/workflows/phpunit.yml | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/cypress.yml b/.github/workflows/cypress.yml index 75864e9a7..41f0690cc 100644 --- a/.github/workflows/cypress.yml +++ b/.github/workflows/cypress.yml @@ -23,7 +23,7 @@ jobs: # containers: [1, 2, 3] php-versions: [ '8.0' ] databases: [ 'sqlite' ] - server-versions: [ 'master' ] + server-versions: [ 'stable26' ] steps: - name: Use Node.js ${{ matrix.node-version }} diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index 6a4a135c6..a84b5f567 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -28,7 +28,7 @@ jobs: matrix: php-versions: ['8.1'] databases: ['sqlite', 'mysql', 'pgsql'] - server-versions: ['master'] + server-versions: ['stable26'] name: php${{ matrix.php-versions }}-${{ matrix.databases }}-${{ matrix.server-versions }} @@ -151,4 +151,4 @@ jobs: repo: context.repo.repo, body: comment }) - } \ No newline at end of file + } diff --git a/.github/workflows/phpunit.yml b/.github/workflows/phpunit.yml index f923d49a6..6093004da 100644 --- a/.github/workflows/phpunit.yml +++ b/.github/workflows/phpunit.yml @@ -26,9 +26,9 @@ jobs: strategy: fail-fast: false matrix: - php-versions: ['8.0', '8.1'] + php-versions: ['8.0', '8.1', '8.2'] databases: ['sqlite', 'mysql', 'pgsql'] - server-versions: ['master'] + server-versions: ['stable26'] name: php${{ matrix.php-versions }}-${{ matrix.databases }}-${{ matrix.server-versions }}