diff --git a/.github/workflows/integration-test-cron.yml b/.github/workflows/integration-test-cron.yml
index 825e2dd..9c84a6e 100644
--- a/.github/workflows/integration-test-cron.yml
+++ b/.github/workflows/integration-test-cron.yml
@@ -58,12 +58,12 @@ jobs:
matrix:
php-versions: [ '8.2' ]
databases: [ 'pgsql' ]
- server-versions: [ 'stable32', 'stable33', 'master' ]
+ server-versions: [ 'stable32', 'stable33', 'stable34' ]
encryption: ['off']
include:
- server-versions: master
databases: pgsql
- php-versions: 8.2
+ php-versions: 8.3
encryption: 'on'
- server-versions: stable32
databases: pgsql
@@ -133,6 +133,14 @@ jobs:
persist-credentials: false
ref: ${{ matrix.server-versions }}
+ - name: Checkout app_api
+ uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
+ with:
+ repository: nextcloud/app_api
+ ref: ${{ matrix.server-versions == 'master' && 'main' || matrix.server-versions }}
+ path: apps/app_api
+ persist-credentials: false
+
- name: Get backend app version
id: appinfo
uses: skjnldsv/xpath-action@7e6a7c379d0e9abc8acaef43df403ab4fc4f770c # master
diff --git a/.github/workflows/integration-test-file-listener.yml b/.github/workflows/integration-test-file-listener.yml
index 72f6298..4f4b7ad 100644
--- a/.github/workflows/integration-test-file-listener.yml
+++ b/.github/workflows/integration-test-file-listener.yml
@@ -56,7 +56,7 @@ jobs:
# do not stop on another job's failure
fail-fast: false
matrix:
- php-versions: [ '8.2' ]
+ php-versions: [ '8.3' ]
databases: [ 'pgsql' ]
server-versions: [ 'master' ]
encryption: ['on']
@@ -125,6 +125,14 @@ jobs:
persist-credentials: false
ref: ${{ matrix.server-versions }}
+ - name: Checkout app_api
+ uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
+ with:
+ repository: nextcloud/app_api
+ ref: ${{ matrix.server-versions == 'master' && 'main' || matrix.server-versions }}
+ path: apps/app_api
+ persist-credentials: false
+
- name: Get backend app version
id: appinfo
uses: skjnldsv/xpath-action@7e6a7c379d0e9abc8acaef43df403ab4fc4f770c # master
diff --git a/appinfo/info.xml b/appinfo/info.xml
index 749d3dc..6254388 100644
--- a/appinfo/info.xml
+++ b/appinfo/info.xml
@@ -40,7 +40,7 @@ Refer to the [Context Chat Backend's readme](https://github.com/nextcloud/contex
https://raw.githubusercontent.com/nextcloud/context_chat/main/screenshots/context_chat_4.png
https://raw.githubusercontent.com/nextcloud/context_chat/main/screenshots/context_chat_5.png
-
+
OCA\ContextChat\BackgroundJobs\FileSystemListenerJob
diff --git a/composer.json b/composer.json
index f2fa44d..4ac11b8 100644
--- a/composer.json
+++ b/composer.json
@@ -18,7 +18,7 @@
}
],
"require": {
- "php": "^8.1 || ^8.2 || ^8.3 || ^8.4"
+ "php": "^8.1 || ^8.2 || ^8.3 || ^8.4 || ^8.5"
},
"require-dev": {
"nextcloud/coding-standard": "^1.3.2",