Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 4 additions & 5 deletions .github/workflows/shared_workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ on:
php_versions:
required: false
type: string
default: "8.1 8.2 8.3"
default: "8.2 8.3 8.4"

name: CI

Expand Down Expand Up @@ -116,24 +116,23 @@ jobs:

services:
nextcloud:
image: ghcr.io/juliusknorr/nextcloud-dev-php${{ format('{0}{1}', matrix.phpVersionMajor,matrix.phpVersionMinor) }}:20231202-1
image: ghcr.io/juliusknorr/nextcloud-dev-php${{ format('{0}{1}', matrix.phpVersionMajor,matrix.phpVersionMinor) }}:master
env:
SQL: ${{ matrix.database }}
SERVER_BRANCH: ${{ matrix.nextcloudVersion }}
NEXTCLOUD_AUTOINSTALL: "Yes"
NEXTCLOUD_TRUSTED_DOMAINS: nextcloud
VIRTUAL_HOST: "nextcloud"
WITH_REDIS: "YES"
ports:
- 80:80
options: --name=nextcloud
volumes:
- ${{ github.workspace }}:/var/www/html/apps-shared

database-postgres:
database-pgsql:
image: ghcr.io/nextcloud/continuous-integration-postgres-14:latest
env:
POSTGRES_PASSWORD: postgres
POSTGRES_USER: postgres
POSTGRES_DB: nextcloud

database-mysql:
Expand Down
16 changes: 8 additions & 8 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
{
"require-dev": {
"phpunit/phpunit": "^9.5",
"phpunit/phpunit": "^9.6.34",
"pact-foundation/pact-php": "^10.1.1",
"friendsofphp/php-cs-fixer": "^3.65.0",
"friendsofphp/php-cs-fixer": "^3.93.1",
"nextcloud/coding-standard": "^1.0",
"behat/behat": "^3.10",
"helmich/phpunit-json-assert": "^3.4",
"vimeo/psalm": "5.23.1",
"guzzlehttp/guzzle": "^7.9",
"behat/gherkin": "v4.12.0",
"php-mock/php-mock-phpunit": "^2.10"
"behat/behat": "^3.29.0",
"helmich/phpunit-json-assert": "^3.5.4",
"vimeo/psalm": "^6.15.0",
"guzzlehttp/guzzle": "^7.10.0",
"behat/gherkin": "v4.16.1",
"php-mock/php-mock-phpunit": "^2.14.0"
},
"scripts": {
"cs:fix": "php-cs-fixer fix",
Expand Down
Loading
Loading