From db7d8008ccd020c78d7d28fc563d573add11d5ae Mon Sep 17 00:00:00 2001 From: W0rma Date: Fri, 23 Jan 2026 14:13:54 +0100 Subject: [PATCH] chore(ci): remove release job for unsupported php 8.1 + simplify ci --- .github/workflows/release.yml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 47f35ad..955acd9 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -9,7 +9,7 @@ jobs: strategy: matrix: - php: [ 8.1, 8.2, 8.3, 8.4, 8.5 ] + php: [ 8.2, 8.3, 8.4, 8.5 ] steps: - name: Checkout code @@ -20,10 +20,6 @@ jobs: with: php-version: ${{ matrix.php }} coverage: none - # this ini directive seems to be off by default in PHP 8.5 - # see https://github.com/php/php-src/issues/20279 - # enable it because codeception relies on it. - ini-values: register_argc_argv=1 - name: Validate composer.json and composer.lock run: composer validate