Skip to content

Update codecov/codecov-action action to v5 #4518

Update codecov/codecov-action action to v5

Update codecov/codecov-action action to v5 #4518

Triggered via push January 24, 2025 18:17
Status Success
Total duration 57s
Artifacts
Matrix: Mutation tests
Fit to window
Zoom out
Zoom in

Annotations

13 warnings
Mutation tests (locked, 8.1, ubuntu-latest)
Your workflow is using a version of actions/cache that is scheduled for deprecation, actions/[email protected]. Please update your workflow to use either v3 or v4 of actions/cache to avoid interruptions. Learn more: https://github.blog/changelog/2024-12-05-notice-of-upcoming-releases-and-breaking-changes-for-github-actions/#actions-cache-v1-v2-and-actions-toolkit-cache-package-closing-down
Mutation tests (locked, 8.1, ubuntu-latest)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
Mutation tests (locked, 8.1, ubuntu-latest): src/Mapping/ExpandTags.php#L65
Escaped Mutant for Mutator "MethodCallRemoval": --- Original +++ New @@ @@ assert($definition instanceof Definition); assert(is_array($annotations) && $annotations !== []); $this->appendTags($definition, $annotations); - $container->addResource(new FileResource($file)); + } } /**
Mutation tests (locked, 8.1, ubuntu-latest): src/Mapping/ExpandTags.php#L84
Escaped Mutant for Mutator "Continue_": --- Original +++ New @@ @@ $className = $definition->getClass(); assert(is_string($className)); if (!class_exists($className)) { - continue; + break; } $class = new ReflectionClass($className); $annotations = $reader->getClassAnnotations($class);
Mutation tests (locked, 8.1, ubuntu-latest): src/Routing/ErrorHandling/RegisterDefaultComponents.php#L34
Escaped Mutant for Mutator "LogicalOr": --- Original +++ New @@ @@ } private function hasService(ContainerBuilder $container, string $service) : bool { - return $container->hasAlias($service) || $container->hasDefinition($service); + return $container->hasAlias($service) && $container->hasDefinition($service); } }
Mutation tests (locked, 8.1, ubuntu-latest): src/Routing/Mezzio/RegisterServices.php#L130
Escaped Mutant for Mutator "Coalesce": --- Original +++ New @@ @@ if (isset($tag['methods'])) { $tag['methods'] = explode(',', $tag['methods']); } - $tag['async'] = (bool) ($tag['async'] ?? false); + $tag['async'] = (bool) (false ?? $tag['async']); $tag['serviceId'] = $serviceId; $routes[] = $tag; $names[$tag['route_name']] = $serviceId;
Mutation tests (locked, 8.1, ubuntu-latest): src/Routing/Mezzio/RegisterServices.php#L151
Escaped Mutant for Mutator "Foreach_": --- Original +++ New @@ @@ private function extractMiddlewareList(ContainerBuilder $container) : array { $list = []; - foreach ($container->findTaggedServiceIds(Tags::HTTP_MIDDLEWARE) as $serviceId => $tags) { + foreach (array() as $serviceId => $tags) { foreach ($tags as $tag) { $priority = (int) ($tag['priority'] ?? 0); $path = (string) ($tag['path'] ?? '/');
Mutation tests (locked, 8.1, ubuntu-latest): src/Routing/Mezzio/RegisterServices.php#L153
Escaped Mutant for Mutator "CastInt": --- Original +++ New @@ @@ $list = []; foreach ($container->findTaggedServiceIds(Tags::HTTP_MIDDLEWARE) as $serviceId => $tags) { foreach ($tags as $tag) { - $priority = (int) ($tag['priority'] ?? 0); + $priority = $tag['priority'] ?? 0; $path = (string) ($tag['path'] ?? '/'); $list[$priority][$path] ??= []; $list[$priority][$path][] = $serviceId;
Mutation tests (locked, 8.1, ubuntu-latest): src/Routing/Mezzio/RegisterServices.php#L154
Escaped Mutant for Mutator "CastString": --- Original +++ New @@ @@ foreach ($container->findTaggedServiceIds(Tags::HTTP_MIDDLEWARE) as $serviceId => $tags) { foreach ($tags as $tag) { $priority = (int) ($tag['priority'] ?? 0); - $path = (string) ($tag['path'] ?? '/'); + $path = $tag['path'] ?? '/'; $list[$priority][$path] ??= []; $list[$priority][$path][] = $serviceId; }
Mutation tests (locked, 8.1, ubuntu-latest): src/Routing/Mezzio/RegisterServices.php#L154
Escaped Mutant for Mutator "Coalesce": --- Original +++ New @@ @@ foreach ($container->findTaggedServiceIds(Tags::HTTP_MIDDLEWARE) as $serviceId => $tags) { foreach ($tags as $tag) { $priority = (int) ($tag['priority'] ?? 0); - $path = (string) ($tag['path'] ?? '/'); + $path = (string) ('/' ?? $tag['path']); $list[$priority][$path] ??= []; $list[$priority][$path][] = $serviceId; }
Mutation tests (locked, 8.1, ubuntu-latest): src/Routing/Mezzio/RegisterServices.php#L161
Escaped Mutant for Mutator "AssignCoalesce": --- Original +++ New @@ @@ $list[$priority][$path][] = $serviceId; } } - $list[Priorities::CONTENT_NEGOTIATION]['/'] ??= []; + $list[Priorities::CONTENT_NEGOTIATION]['/'] = []; $list[Priorities::BEFORE_CUSTOM]['/'] ??= []; $list[Priorities::AFTER_CUSTOM]['/'] ??= []; $list[Priorities::CONTENT_NEGOTIATION]['/'][] = ContentTypeMiddleware::class;
Mutation tests (locked, 8.1, ubuntu-latest): src/Routing/Mezzio/RegisterServices.php#L162
Escaped Mutant for Mutator "AssignCoalesce": --- Original +++ New @@ @@ } } $list[Priorities::CONTENT_NEGOTIATION]['/'] ??= []; - $list[Priorities::BEFORE_CUSTOM]['/'] ??= []; + $list[Priorities::BEFORE_CUSTOM]['/'] = []; $list[Priorities::AFTER_CUSTOM]['/'] ??= []; $list[Priorities::CONTENT_NEGOTIATION]['/'][] = ContentTypeMiddleware::class; $list[Priorities::BEFORE_CUSTOM]['/'][] = RouteMiddleware::class;
Mutation tests (locked, 8.1, ubuntu-latest)
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/