chore(deps): update actions/checkout action to v4 #291
Annotations
3 warnings
Infection
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/cache@v3. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
|
Infection:
src/Exception/InvalidArgument.php#L17
Escaped Mutant for Mutator "IncrementInteger":
--- Original
+++ New
@@ @@
use function sprintf;
final class InvalidArgument extends Exception implements ClientAware
{
- private function __construct(string $message = '', int $code = 0, Throwable|null $previous = null)
+ private function __construct(string $message = '', int $code = 1, Throwable|null $previous = null)
{
parent::__construct($message, $code, $previous);
}
|
Infection:
src/Exception/InvalidArgument.php#L17
Escaped Mutant for Mutator "DecrementInteger":
--- Original
+++ New
@@ @@
use function sprintf;
final class InvalidArgument extends Exception implements ClientAware
{
- private function __construct(string $message = '', int $code = 0, Throwable|null $previous = null)
+ private function __construct(string $message = '', int $code = -1, Throwable|null $previous = null)
{
parent::__construct($message, $code, $previous);
}
|