summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSean Molenaar <SMillerDev@users.noreply.github.com>2021-11-30 15:09:10 +0100
committerBenjamin Brahmer <info@b-brahmer.de>2021-12-03 21:39:47 +0100
commit999a73b182856e7f6be93a92bc56588915adfcea (patch)
tree5d667e305c1fc5135b0741de6a2cc404e53c3a60
parente90035f60560bff04966d857981f59aa2aba3cac (diff)
chore: update CI
Signed-off-by: Sean Molenaar <sean@seanmolenaar.eu>
-rw-r--r--.github/workflows/api-integration-tests.yml8
-rw-r--r--.github/workflows/api-php-static-code-check.yml4
-rw-r--r--.github/workflows/api-php-tests.yml4
-rw-r--r--.github/workflows/build-release.yml4
-rw-r--r--.github/workflows/frontend-nodejs-tests.yml4
-rw-r--r--.github/workflows/post-merge-tasks.yml2
6 files changed, 13 insertions, 13 deletions
diff --git a/.github/workflows/api-integration-tests.yml b/.github/workflows/api-integration-tests.yml
index a4c8af8b6..c2f3d7f99 100644
--- a/.github/workflows/api-integration-tests.yml
+++ b/.github/workflows/api-integration-tests.yml
@@ -28,16 +28,16 @@ jobs:
- 5432:5432 # Maps tcp port 5432 on service container to the host
strategy:
matrix:
- php-versions: ['7.3', '7.4']
- nextcloud: ['stable21', 'stable22']
+ php-versions: ['7.4', '8.0']
+ nextcloud: ['stable21', 'stable22', 'stable23']
database: ['sqlite', 'pgsql', 'mysql']
experimental: [false]
include:
- - php-versions: 7.4
+ - php-versions: 8.0
nextcloud: pre-release
database: sqlite
experimental: true
- - php-versions: 8.0
+ - php-versions: 8.1
nextcloud: pre-release
database: sqlite
experimental: true
diff --git a/.github/workflows/api-php-static-code-check.yml b/.github/workflows/api-php-static-code-check.yml
index 8e0cb32f0..493bbb2f1 100644
--- a/.github/workflows/api-php-static-code-check.yml
+++ b/.github/workflows/api-php-static-code-check.yml
@@ -7,8 +7,8 @@ jobs:
continue-on-error: true
strategy:
matrix:
- php-versions: [ '7.4' ]
- nextcloud: [ 'stable22' ]
+ php-versions: [ '8.0' ]
+ nextcloud: [ 'stable23' ]
database: [ 'sqlite' ]
name: "phpstan: Nextcloud ${{ matrix.nextcloud }}"
steps:
diff --git a/.github/workflows/api-php-tests.yml b/.github/workflows/api-php-tests.yml
index ca97dce69..f7d4a3c60 100644
--- a/.github/workflows/api-php-tests.yml
+++ b/.github/workflows/api-php-tests.yml
@@ -9,8 +9,8 @@ jobs:
name: "PHP: Nextcloud ${{ matrix.nextcloud }} - PHP ${{ matrix.php-versions }} - DB ${{ matrix.database }}"
strategy:
matrix:
- php-versions: ['7.4']
- nextcloud: ['stable22']
+ php-versions: ['8.0']
+ nextcloud: ['stable23']
database: ['sqlite']
experimental: [false]
steps:
diff --git a/.github/workflows/build-release.yml b/.github/workflows/build-release.yml
index f130204f7..669fa1672 100644
--- a/.github/workflows/build-release.yml
+++ b/.github/workflows/build-release.yml
@@ -14,8 +14,8 @@ jobs:
name: "Release: build, sign and upload the app"
strategy:
matrix:
- php-versions: ['7.4']
- nextcloud: ['stable22']
+ php-versions: ['8.0']
+ nextcloud: ['stable23']
database: ['sqlite']
steps:
- name: Checkout
diff --git a/.github/workflows/frontend-nodejs-tests.yml b/.github/workflows/frontend-nodejs-tests.yml
index 40a28b690..9d5c36faa 100644
--- a/.github/workflows/frontend-nodejs-tests.yml
+++ b/.github/workflows/frontend-nodejs-tests.yml
@@ -9,8 +9,8 @@ jobs:
name: "Frontend: Nextcloud ${{ matrix.nextcloud }} - PHP ${{ matrix.php-versions }} - DB ${{ matrix.database }}"
strategy:
matrix:
- php-versions: ['7.4']
- nextcloud: ['stable22']
+ php-versions: ['8.0']
+ nextcloud: ['stable23']
database: ['sqlite']
experimental: [false]
steps:
diff --git a/.github/workflows/post-merge-tasks.yml b/.github/workflows/post-merge-tasks.yml
index e3738e585..48330d671 100644
--- a/.github/workflows/post-merge-tasks.yml
+++ b/.github/workflows/post-merge-tasks.yml
@@ -10,7 +10,7 @@ jobs:
name: "Coverage: Nextcloud PHP ${{ matrix.php-versions }}"
strategy:
matrix:
- nextcloud: ['stable22']
+ nextcloud: ['stable23']
steps:
- name: Checkout
uses: actions/checkout@v2.4.0