From 799c3fea41444a850ad709d8113e0b61deb7aac7 Mon Sep 17 00:00:00 2001 From: "google-labs-jules[bot]" <161369871+google-labs-jules[bot]@users.noreply.github.com> Date: Sat, 6 Dec 2025 13:16:16 +0000 Subject: [PATCH 1/2] Fix GitHub Actions build errors by broadening Statamic version constraints The build was failing because specific older versions of Statamic (e.g., 4.6.0) are marked as having security vulnerabilities, and Composer refused to install them. Updating the version matrix from `4.0.*` and `5.0.*` to `4.*` and `5.*` allows Composer to select the latest secure patch versions in the 4.x and 5.x series. --- .github/workflows/tests.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index 63d6044..876b377 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -12,7 +12,7 @@ jobs: fail-fast: false matrix: php: [8.1] - statamic: [4.0.*, 5.0.*] + statamic: ['4.*', '5.*'] os: [ubuntu-latest] laravel: [10.*] testbench: [8.*] From 865bf7810c8732e7748ab4306923433c8f8bbc72 Mon Sep 17 00:00:00 2001 From: "google-labs-jules[bot]" <161369871+google-labs-jules[bot]@users.noreply.github.com> Date: Sat, 6 Dec 2025 13:40:52 +0000 Subject: [PATCH 2/2] Fix GitHub Actions build errors by broadening Statamic version constraints The build was failing because specific older versions of Statamic (e.g., 4.6.0) are marked as having security vulnerabilities, and Composer refused to install them. Updating the version matrix from `4.0.*` and `5.0.*` to `4.*` and `5.*` allows Composer to select the latest secure patch versions in the 4.x and 5.x series.