chore(deps): update codecov/codecov-action action to v6 (#121) #300
Annotations
9 warnings
|
Infection
Node.js 20 actions are deprecated. The following actions are running on Node.js 20 and may not work as expected: actions/cache@v3. Actions will be forced to run with Node.js 24 by default starting June 2nd, 2026. Node.js 20 will be removed from the runner on September 16th, 2026. Please check if updated versions of these actions are available that support Node.js 24. To opt into Node.js 24 now, set the FORCE_JAVASCRIPT_ACTIONS_TO_NODE24=true environment variable on the runner or in your workflow file. Once Node.js 24 becomes the default, you can temporarily opt out by setting ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION=true. For more information see: https://github.blog/changelog/2025-09-19-deprecation-of-node-20-on-github-actions-runners/
|
|
Infection:
src/TestCheck/EveryTestInheritsFromTestCaseBaseClass.php#L47
Escaped Mutant for Mutator "Continue_":
@@ @@
}
if ($classReflection->getName() === $this->testCaseBaseClass) {
- continue;
+ break;
}
$this->assertParentClass($testCaseContext, $classReflection, $parentClassReflection);
|
|
Infection:
src/TestCheck/EveryTestHasSameNamespaceAsCoveredClass.php#L79
Escaped Mutant for Mutator "ConcatOperandRemoval":
@@ @@
$testCaseContext::fail(
sprintf(
- 'Test "%s" is in the wrong namespace, ' .
- 'has name different from tested class or is missing CoversClass attribute',
+ 'Test "%s" is in the wrong namespace, ',
$classReflection->getName(),
),
);
|
|
Infection:
src/TestCheck/EveryTestHasSameNamespaceAsCoveredClass.php#L79
Escaped Mutant for Mutator "Concat":
@@ @@
$testCaseContext::fail(
sprintf(
- 'Test "%s" is in the wrong namespace, ' .
- 'has name different from tested class or is missing CoversClass attribute',
+ 'has name different from tested class or is missing CoversClass attribute' . 'Test "%s" is in the wrong namespace, ',
$classReflection->getName(),
),
);
|
|
Infection:
src/TestCheck/EveryTestHasSameNamespaceAsCoveredClass.php#L74
Escaped Mutant for Mutator "Continue_":
@@ @@
}
if (class_exists($coveredClassName) || trait_exists($coveredClassName)) {
- continue;
+ break;
}
$testCaseContext::fail(
|
|
Infection:
src/TestCheck/EveryTestHasSameNamespaceAsCoveredClass.php#L56
Escaped Mutant for Mutator "Continue_":
@@ @@
}
if ($hasCoversNothing || $hasCovers) {
- continue;
+ break;
}
$className = $classReflection->getName();
|
|
Infection:
src/TestCheck/EveryTestHasGroup.php#L69
Escaped Mutant for Mutator "Continue_":
@@ @@
}
if ($this->supportedGroups === null) {
- continue;
+ break;
}
$testCaseContext::assertContains(
|
|
Infection:
src/TestCheck/EveryTestHasGroup.php#L65
Escaped Mutant for Mutator "Continue_":
@@ @@
) {
$hasRequiredGroup = true;
- continue;
+ break;
}
if ($this->supportedGroups === null) {
|
|
Infection:
src/Stub.php#L113
Escaped Mutant for Mutator "Identical":
@@ @@
* @phpstan-var ReflectionClass<T>|false $parentClass
*/
$parentClass = $reflection->getParentClass();
- if ($parentClass === false) {
+ if ($parentClass !== false) {
return $properties;
}
|