From 0a34573619ba55cb4c49c81a0d27e1aae52898d0 Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Thu, 23 Nov 2023 12:45:14 +0100 Subject: [PATCH] chore(CI): Adjust testing matrix for Nextcloud 28 on stable28 Signed-off-by: Joas Schilling Signed-off-by: Christoph Wurst --- .github/workflows/lint.yml | 2 +- .github/workflows/phpunit-mysql.yml | 4 ++-- .github/workflows/phpunit-pgsql.yml | 2 +- .github/workflows/phpunit-sqlite.yml | 2 +- .github/workflows/profile.yml | 2 +- .github/workflows/test.yml | 4 ++-- 6 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index ae49cb96..65da65bb 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -10,7 +10,7 @@ jobs: - name: Download schema run: wget https://apps.nextcloud.com/schema/apps/info.xsd - name: Lint info.xml - uses: ChristophWurst/xmllint-action@v1 + uses: ChristophWurst/xmllint-action@v1.2 with: xml-file: ./appinfo/info.xml xml-schema-file: ./info.xsd diff --git a/.github/workflows/phpunit-mysql.yml b/.github/workflows/phpunit-mysql.yml index fcadf468..90fdf3cf 100644 --- a/.github/workflows/phpunit-mysql.yml +++ b/.github/workflows/phpunit-mysql.yml @@ -38,8 +38,8 @@ jobs: strategy: matrix: - php-versions: ['8.0', '8.1', '8.2'] - server-versions: ['master'] + php-versions: ['8.0', '8.1', '8.2', '8.3'] + server-versions: ['stable28'] services: mysql: diff --git a/.github/workflows/phpunit-pgsql.yml b/.github/workflows/phpunit-pgsql.yml index c4189d50..68b15dc6 100644 --- a/.github/workflows/phpunit-pgsql.yml +++ b/.github/workflows/phpunit-pgsql.yml @@ -39,7 +39,7 @@ jobs: strategy: matrix: php-versions: ['8.0'] - server-versions: ['master'] + server-versions: ['stable28'] services: postgres: diff --git a/.github/workflows/phpunit-sqlite.yml b/.github/workflows/phpunit-sqlite.yml index bc6b4f25..8b7a13e6 100644 --- a/.github/workflows/phpunit-sqlite.yml +++ b/.github/workflows/phpunit-sqlite.yml @@ -39,7 +39,7 @@ jobs: strategy: matrix: php-versions: ['8.0'] - server-versions: ['master'] + server-versions: ['stable28'] steps: - name: Set app env diff --git a/.github/workflows/profile.yml b/.github/workflows/profile.yml index dd9cf264..16caf76f 100644 --- a/.github/workflows/profile.yml +++ b/.github/workflows/profile.yml @@ -7,7 +7,7 @@ jobs: strategy: matrix: php-version: [ '8.0', '8.1' ] - nextcloud-version: [ 'master' ] + nextcloud-version: [ 'stable28' ] name: php${{ matrix.php-version }} profiling services: mysql-service: diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 79402588..cc3bf503 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -24,11 +24,11 @@ jobs: strategy: matrix: php-versions: [ '8.1' ] - nextcloud-versions: [ 'master' ] + nextcloud-versions: [ 'stable28' ] db: [ 'mysql' ] include: - php-versions: '8.0' - nextcloud-versions: master + nextcloud-versions: stable28 db: 'pgsql' name: Nextcloud${{ matrix.nextcloud-versions }}-${{ matrix.db }} smoke test services: