diff options
author | Daniel Calviño Sánchez <danxuliu@gmail.com> | 2025-06-17 06:15:37 +0200 |
---|---|---|
committer | Daniel Calviño Sánchez <danxuliu@gmail.com> | 2025-06-17 06:15:37 +0200 |
commit | 45b06784a7a8ab1d01f56be4d31ce335b0970005 (patch) | |
tree | c89f32974f0f0c9493969e09efb8012c73508c54 | |
parent | 997cd559291170bdea7342e4fe9616d74457859b (diff) | |
download | nextcloud-server-fix-running-files-external-s3-tests-in-stable30-ci.tar.gz nextcloud-server-fix-running-files-external-s3-tests-in-stable30-ci.zip |
ci: Fix running files_external S3 testsfix-running-files-external-s3-tests-in-stable30-ci
PHP >= 8.4 is not supported in Nextcloud 30.
Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
-rw-r--r-- | .github/workflows/files-external-s3.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/files-external-s3.yml b/.github/workflows/files-external-s3.yml index e3043737a7a..b7d6767abea 100644 --- a/.github/workflows/files-external-s3.yml +++ b/.github/workflows/files-external-s3.yml @@ -122,7 +122,7 @@ jobs: strategy: matrix: - php-versions: ['8.1', '8.2', '8.4'] + php-versions: ['8.1', '8.2', '8.3'] include: - php-versions: '8.3' coverage: true |