From 3bad025d4f567a911451e29a052f9784adb20020 Mon Sep 17 00:00:00 2001 From: Tim Bond Date: Fri, 12 Apr 2024 16:24:43 -0700 Subject: [PATCH] Remove the default value for the test_suffix parameter Passing a comma-separated list of values to the CLI argument --test-suffix has been deprecated in PHPUnit 11[1] and will no longer work in PHPUnit 12. Given that this action is sending its default value[2] anyways, there's no reason to explicitly provide this command line argument. Further, it's confusing that this command line argument is specified at all when nothing in my repo's configuration sets its value. [1]: https://github.com/sebastianbergmann/phpunit/issues/5709 [2]: https://docs.phpunit.de/en/11.1/textui.html#selection --- action.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/action.yml b/action.yml index cb18c98..d0ab882 100644 --- a/action.yml +++ b/action.yml @@ -67,7 +67,6 @@ inputs: test_suffix: description: Only search for test in files with specified suffix(es) required: false - default: Test.php,.phpt whitelist: description: Path to directory to whitelist for code coverage analysis