From 09a439e9931b269d7d1eb9a2ca3b589b03db2123 Mon Sep 17 00:00:00 2001 From: grnd-alt Date: Mon, 2 Mar 2026 12:29:34 +0100 Subject: [PATCH] ci: do not update phpunit before run Signed-off-by: grnd-alt --- .github/workflows/integration.yml | 1 - tests/integration/composer.json | 8 +++++++- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index 2a1f6e39a1..b0042e44d2 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -63,7 +63,6 @@ jobs: auth_header="$(git config --local --get http.https://github.com/.extraheader)" git submodule sync --recursive git -c "http.extraheader=$auth_header" -c protocol.version=2 submodule update --init --force --recursive --depth=1 - cd build/integration && composer require --dev phpunit/phpunit:~9 - name: Checkout app uses: actions/checkout@v4.1.1 diff --git a/tests/integration/composer.json b/tests/integration/composer.json index ff6b552769..2800db6b85 100644 --- a/tests/integration/composer.json +++ b/tests/integration/composer.json @@ -1,7 +1,13 @@ { + "config": { + "platform": { + "php": "8.0.2" + }, + "sort-packages": true + }, "require-dev": { "phpunit/phpunit": "~9", - "behat/behat": "~3.14.0", + "behat/behat": "^3.14.0", "guzzlehttp/guzzle": "7.8.1", "jarnaiz/behat-junit-formatter": "^1.3", "sabre/dav": "4.6.0",