summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/api-integration-tests.yml2
-rw-r--r--.github/workflows/api-php-static-code-check.yml4
-rw-r--r--.github/workflows/api-php-tests.yml2
-rw-r--r--.github/workflows/build-release.yml4
-rw-r--r--.github/workflows/frontend-nodejs-tests.yml2
-rw-r--r--.github/workflows/post-merge-tasks.yml2
6 files changed, 8 insertions, 8 deletions
diff --git a/.github/workflows/api-integration-tests.yml b/.github/workflows/api-integration-tests.yml
index cdfbbfb50..797242395 100644
--- a/.github/workflows/api-integration-tests.yml
+++ b/.github/workflows/api-integration-tests.yml
@@ -29,7 +29,7 @@ jobs:
strategy:
matrix:
php-versions: ['7.3', '7.4']
- nextcloud: ['stable20', 'stable21']
+ nextcloud: ['stable20', 'stable21', 'stable22']
database: ['sqlite', 'pgsql', 'mysql']
experimental: [false]
include:
diff --git a/.github/workflows/api-php-static-code-check.yml b/.github/workflows/api-php-static-code-check.yml
index 42afdc2e6..5f9216a4b 100644
--- a/.github/workflows/api-php-static-code-check.yml
+++ b/.github/workflows/api-php-static-code-check.yml
@@ -8,7 +8,7 @@ jobs:
strategy:
matrix:
php-versions: [ '7.4' ]
- nextcloud: [ 'stable21' ]
+ nextcloud: [ 'stable22' ]
database: [ 'sqlite' ]
name: "phpstan: Nextcloud ${{ matrix.nextcloud }}"
steps:
@@ -48,4 +48,4 @@ jobs:
- name: PHPStan
working-directory: ../server/apps/news
- run: make phpstan \ No newline at end of file
+ run: make phpstan
diff --git a/.github/workflows/api-php-tests.yml b/.github/workflows/api-php-tests.yml
index 086c02d15..838522bae 100644
--- a/.github/workflows/api-php-tests.yml
+++ b/.github/workflows/api-php-tests.yml
@@ -10,7 +10,7 @@ jobs:
strategy:
matrix:
php-versions: ['7.4']
- nextcloud: ['stable21']
+ nextcloud: ['stable22']
database: ['sqlite']
experimental: [false]
steps:
diff --git a/.github/workflows/build-release.yml b/.github/workflows/build-release.yml
index 35fc3e05c..ab1e77fa3 100644
--- a/.github/workflows/build-release.yml
+++ b/.github/workflows/build-release.yml
@@ -15,7 +15,7 @@ jobs:
strategy:
matrix:
php-versions: ['7.4']
- nextcloud: ['stable21']
+ nextcloud: ['stable22']
database: ['sqlite']
steps:
- name: Checkout
@@ -71,4 +71,4 @@ jobs:
nightly: ${{ github.event.release.prerelease }}
- name: Delete crt and key from local storage
- run: rm -f ~/.nextcloud/certificates/* \ No newline at end of file
+ run: rm -f ~/.nextcloud/certificates/*
diff --git a/.github/workflows/frontend-nodejs-tests.yml b/.github/workflows/frontend-nodejs-tests.yml
index 7bed2e910..5035cd589 100644
--- a/.github/workflows/frontend-nodejs-tests.yml
+++ b/.github/workflows/frontend-nodejs-tests.yml
@@ -10,7 +10,7 @@ jobs:
strategy:
matrix:
php-versions: ['7.4']
- nextcloud: ['stable20']
+ nextcloud: ['stable22']
database: ['sqlite']
experimental: [false]
steps:
diff --git a/.github/workflows/post-merge-tasks.yml b/.github/workflows/post-merge-tasks.yml
index 9c50717ed..dd6b1454d 100644
--- a/.github/workflows/post-merge-tasks.yml
+++ b/.github/workflows/post-merge-tasks.yml
@@ -17,7 +17,7 @@ jobs:
name: "Coverage: Nextcloud PHP ${{ matrix.php-versions }}"
strategy:
matrix:
- nextcloud: ['stable21']
+ nextcloud: ['stable22']
steps:
- name: Checkout
uses: actions/checkout@v2.3.4