From eb4b0be911a7cf2b89a0a2e5629b07076a18b920 Mon Sep 17 00:00:00 2001 From: chris Date: Mon, 3 Nov 2025 17:21:37 +0100 Subject: [PATCH 1/2] ci: add tests for PHP 8.5 --- .github/workflows/test.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index c6b4a1b..0e26b21 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -58,6 +58,11 @@ jobs: RUN_PHPSTAN: true RUN_PSALM: false RUN_BENCHMARK: false + - PHP_VERSION: "8.5" + CODE_COVERAGE: false + RUN_PHPSTAN: true + RUN_PSALM: false + RUN_BENCHMARK: false steps: - uses: actions/checkout@v4 From c5c5a51e74ea01eb9be77d3aa53712ed263cfa8d Mon Sep 17 00:00:00 2001 From: chris Date: Sat, 22 Nov 2025 17:29:35 +0100 Subject: [PATCH 2/2] Update GitHub Actions checkout action version --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 0e26b21..d1f906a 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -65,7 +65,7 @@ jobs: RUN_BENCHMARK: false steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: Cache Docker Image id: cache-docker-image