From 8a95e723df2aec4a5a528189e2df73aebe9ad148 Mon Sep 17 00:00:00 2001 From: Damien Retzinger Date: Sun, 14 Dec 2025 12:08:02 -0500 Subject: [PATCH] feat(unit-test)!: set default unit-test php version to 8.4 --- .github/workflows/_internal-unit.yaml | 7 ++++--- unit-test/action.yml | 2 +- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/_internal-unit.yaml b/.github/workflows/_internal-unit.yaml index 4f1da87..8fc18ef 100644 --- a/.github/workflows/_internal-unit.yaml +++ b/.github/workflows/_internal-unit.yaml @@ -23,11 +23,12 @@ jobs: strategy: matrix: php_version: - - 7.4 - - 8.1 + - 8.2 + - 8.3 + - 8.4 runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - uses: ./unit-test with: source_folder: _test/demo-package diff --git a/unit-test/action.yml b/unit-test/action.yml index 6cd033e..ffef656 100644 --- a/unit-test/action.yml +++ b/unit-test/action.yml @@ -4,7 +4,7 @@ description: "A Github Action that runs the Unit Tests of a Magento Package" inputs: php_version: required: true - default: "8.1" + default: "8.4" description: "PHP Version to use" source_folder: