From cb1b366baf75da4c578bc534884eefa7f6b4b3d2 Mon Sep 17 00:00:00 2001 From: Ferdinand Thiessen Date: Fri, 2 Aug 2024 14:30:52 +0200 Subject: fix(dav): Ensure share properties are also set on public remote endpoint Signed-off-by: Ferdinand Thiessen --- build/integration/run-docker.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'build/integration/run-docker.sh') diff --git a/build/integration/run-docker.sh b/build/integration/run-docker.sh index f49fd3ea650..11563c9aa21 100755 --- a/build/integration/run-docker.sh +++ b/build/integration/run-docker.sh @@ -201,7 +201,7 @@ cd "$(dirname $0)" # "--image XXX" option can be provided to set the Docker image to use to run # the integration tests (one of the "nextcloudci/phpX.Y:phpX.Y-Z" or # "ghcr.io/nextcloud/continuous-integration-integration-phpX.Y:latest" images). -NEXTCLOUD_LOCAL_IMAGE="ghcr.io/nextcloud/continuous-integration-integration-php8.0:latest" +NEXTCLOUD_LOCAL_IMAGE="ghcr.io/nextcloud/continuous-integration-integration-php8.1:latest" if [ "$1" = "--image" ]; then NEXTCLOUD_LOCAL_IMAGE=$2 @@ -227,9 +227,9 @@ fi # "--database-image XXX" option can be provided to set the Docker image to use # for the database container (ignored when using "sqlite"). if [ "$DATABASE" = "mysql" ]; then - DATABASE_IMAGE="mysql:5.7" + DATABASE_IMAGE="mysql:8.4" elif [ "$DATABASE" = "pgsql" ]; then - DATABASE_IMAGE="postgres:10" + DATABASE_IMAGE="postgres:15" fi if [ "$1" = "--database-image" ]; then DATABASE_IMAGE=$2 -- cgit v1.2.3