From a9285468fa47ec61939bc93a88962a58282d4bda Mon Sep 17 00:00:00 2001 From: Mark Sagi-Kazar Date: Mon, 13 Jan 2025 15:21:06 +0100 Subject: [PATCH] ci: add PHP 8.4 builds Signed-off-by: Mark Sagi-Kazar --- .dagger/versions_pinned.go | 1 + .github/workflows/ci.yaml | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.dagger/versions_pinned.go b/.dagger/versions_pinned.go index 5ca8810..9290db9 100644 --- a/.dagger/versions_pinned.go +++ b/.dagger/versions_pinned.go @@ -3,6 +3,7 @@ package main const ( goVersion = "1.23.4" + // update to 8.4 once php-cs-fixer supports it defaultPhpVersion = "8.3" composerVersion = "2.8.4" diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 5af2fd8..392c458 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -18,7 +18,7 @@ jobs: strategy: fail-fast: false matrix: - php: ["7.4", "8.0", "8.1", "8.2", "8.3"] + php: ["7.4", "8.0", "8.1", "8.2", "8.3", "8.4"] steps: - name: Checkout repository