From a6318fcfdf7b06ace1b452abef69a549be2dc4ce Mon Sep 17 00:00:00 2001 From: Philipp Bammes <8144115+tyrann0us@users.noreply.github.com> Date: Thu, 8 Feb 2024 07:20:49 +0100 Subject: [PATCH 1/2] chore(tests): use main branch of reusable workflows The PR has been merged, we can switch to `main`. AT-714 Signed-off-by: Philipp Bammes <8144115+tyrann0us@users.noreply.github.com> --- .github/workflows/playwright.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/playwright.yml b/.github/workflows/playwright.yml index 2f15cb3..1672dd2 100644 --- a/.github/workflows/playwright.yml +++ b/.github/workflows/playwright.yml @@ -4,7 +4,7 @@ on: workflow_dispatch: jobs: ddev-playwright: - uses: inpsyde/reusable-workflows/.github/workflows/ddev-playwright.yml@feature/ddev-playwright + uses: inpsyde/reusable-workflows/.github/workflows/ddev-playwright.yml@main secrets: COMPOSER_AUTH_JSON: ${{ secrets.PACKAGIST_AUTH_JSON }} with: From 3f1b3982cc548ca0d66da6b4314f20beefa3e660 Mon Sep 17 00:00:00 2001 From: Philipp Bammes <8144115+tyrann0us@users.noreply.github.com> Date: Thu, 8 Feb 2024 07:28:44 +0100 Subject: [PATCH 2/2] chore(tests): remove deprecated `PHP_MATRIX` workflow input Signed-off-by: Philipp Bammes <8144115+tyrann0us@users.noreply.github.com> --- .github/workflows/unit-tests.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/unit-tests.yml b/.github/workflows/unit-tests.yml index fdb1a30..0dbb7cd 100644 --- a/.github/workflows/unit-tests.yml +++ b/.github/workflows/unit-tests.yml @@ -10,9 +10,11 @@ on: jobs: tests-unit-php: uses: inpsyde/reusable-workflows/.github/workflows/tests-unit-php.yml@main + strategy: + matrix: + php: ["7.3", "7.4", "8.0", "8.1"] secrets: COMPOSER_AUTH_JSON: ${{ secrets.COMPOSER_AUTH_JSON }} with: PHPUNIT_ARGS: '--testsuite=Unit --coverage-text' - PHP_MATRIX: >- - ["7.3", "7.4", "8.0", "8.1"] + PHP_VERSION: ${{ matrix.php }}