From 62a493ad7468fae3839e9c4fcfb01364b6d77d62 Mon Sep 17 00:00:00 2001 From: Chris Nizzardini Date: Fri, 24 Jul 2026 22:49:52 -0400 Subject: [PATCH 1/3] adds 5.4 to matrix --- .github/workflows/pull-request.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index 6959bb7..0b01a49 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -124,7 +124,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - version: ['~5.0.0', '^5.0'] + version: ['~5.0.0', '^5.4'] steps: - name: Checkout uses: actions/checkout@v2 From 3e497b099add3d22bb50bdaf7356e70cb087cb95 Mon Sep 17 00:00:00 2001 From: Chris Nizzardini Date: Fri, 24 Jul 2026 22:54:47 -0400 Subject: [PATCH 2/3] ignore security check in pipeline --- .github/workflows/pull-request.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index 0b01a49..ba21e78 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -142,6 +142,7 @@ jobs: run: | composer self-update rm -rf composer.lock + composer config --no-plugins policy.advisories.block false composer require cakephp/cakephp:${{matrix.version}} --no-update composer install --prefer-dist --no-progress composer test From 92675eaafa16719c610e78ca6373ed3a1eb133cc Mon Sep 17 00:00:00 2001 From: Chris Nizzardini Date: Fri, 24 Jul 2026 22:56:07 -0400 Subject: [PATCH 3/3] bump php to 8.2 in pipeline --- .github/workflows/pull-request.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index ba21e78..3683bbc 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -132,7 +132,7 @@ jobs: - name: Setup PHP uses: shivammathur/setup-php@v2 with: - php-version: '8.1' + php-version: '8.2' extensions: mbstring, intl - name: PHP Version