From 45a6120a4ac4278d068f297c866616953e29cabd Mon Sep 17 00:00:00 2001 From: Michael Vasseur <14887731+vmcj@users.noreply.github.com> Date: Sun, 30 Nov 2025 12:42:18 +0100 Subject: [PATCH 1/2] Check the supported PHP versions --- .github/workflows/codestyle.yml | 2 +- .github/workflows/unit-tests.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/codestyle.yml b/.github/workflows/codestyle.yml index 0dbddf8f72..8bc9270043 100644 --- a/.github/workflows/codestyle.yml +++ b/.github/workflows/codestyle.yml @@ -46,7 +46,7 @@ jobs: image: pipelinecomponents/php-codesniffer:latest strategy: matrix: - PHPVERSION: ["8.1", "8.2", "8.3", "8.4"] + PHPVERSION: ["8.2", "8.3", "8.4", "8.5"] steps: - run: apk add git - uses: actions/checkout@v4 diff --git a/.github/workflows/unit-tests.yml b/.github/workflows/unit-tests.yml index d6d53f8712..820ca6e106 100644 --- a/.github/workflows/unit-tests.yml +++ b/.github/workflows/unit-tests.yml @@ -43,7 +43,7 @@ jobs: options: --health-cmd="healthcheck.sh --connect --innodb_initialized" --health-interval=10s --health-timeout=5s --health-retries=3 strategy: matrix: - PHPVERSION: [8.1, 8.4] + PHPVERSION: [8.2, 8.5] TEST: [Unit, E2E] steps: - uses: actions/checkout@v4 From bce7f46ad7326245cc81bb6f32c009a6416bdd79 Mon Sep 17 00:00:00 2001 From: Michael Vasseur <14887731+vmcj@users.noreply.github.com> Date: Sun, 30 Nov 2025 12:42:59 +0100 Subject: [PATCH 2/2] Make CI faster by assumption that no features have been deprecated and readded --- .github/workflows/codestyle.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/codestyle.yml b/.github/workflows/codestyle.yml index 8bc9270043..0497e37e1f 100644 --- a/.github/workflows/codestyle.yml +++ b/.github/workflows/codestyle.yml @@ -46,7 +46,7 @@ jobs: image: pipelinecomponents/php-codesniffer:latest strategy: matrix: - PHPVERSION: ["8.2", "8.3", "8.4", "8.5"] + PHPVERSION: ["8.2", "8.5"] steps: - run: apk add git - uses: actions/checkout@v4