Skip to content

Update dependency sphinx to v8 #1740

Update dependency sphinx to v8

Update dependency sphinx to v8 #1740

Triggered via pull request October 12, 2024 20:05
Status Success
Total duration 48s
Artifacts

continuous-integration.yml

on: pull_request
run  /  Generate test matrix
3s
run / Generate test matrix
Matrix: run / Code Coverage
Matrix: run / Coding Standards
Matrix: run / Lint composer.json
Matrix: run / Mutation Tests
Matrix: run / Static Code Analysis
Matrix: run / tests
Fit to window
Zoom out
Zoom in

Annotations

23 warnings
run / Code Coverage (8.3)
The following actions use a deprecated Node.js version and will be forced to run on node20: actions/cache@v3. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
run / Coding Standards (8.3)
The following actions use a deprecated Node.js version and will be forced to run on node20: actions/cache@v3. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
run / Lint composer.json (8.3)
The following actions use a deprecated Node.js version and will be forced to run on node20: actions/cache@v3. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
run / Static Code Analysis (8.3)
The following actions use a deprecated Node.js version and will be forced to run on node20: actions/cache@v3. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
run / Test: PHP 8.2, Symfony 6.4, lowest)
The following actions use a deprecated Node.js version and will be forced to run on node20: actions/cache@v3. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
run / Test: PHP 8.3, Symfony 6.4, lowest)
The following actions use a deprecated Node.js version and will be forced to run on node20: actions/cache@v3. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
run / Test: PHP 8.3, Symfony 7.0, lowest)
The following actions use a deprecated Node.js version and will be forced to run on node20: actions/cache@v3. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
run / Test: PHP 8.3, Symfony 6.4, highest)
The following actions use a deprecated Node.js version and will be forced to run on node20: actions/cache@v3. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
run / Test: PHP 8.2, Symfony 7.0, lowest)
The following actions use a deprecated Node.js version and will be forced to run on node20: actions/cache@v3. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
run / Test: PHP 8.2, Symfony 7.0, highest)
The following actions use a deprecated Node.js version and will be forced to run on node20: actions/cache@v3. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
run / Mutation Tests (8.3)
The following actions use a deprecated Node.js version and will be forced to run on node20: actions/cache@v3. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
run / Mutation Tests (8.3): src/Action/ConfirmRegistrationAction.php#L59
Escaped Mutant for Mutator "MethodCallRemoval": @@ @@ $user->setConfirmationToken(null); $user->setEnabled(true); $event = new GetResponseUserEvent($user, $request); - $this->eventDispatcher->dispatch($event, NucleosProfileEvents::REGISTRATION_CONFIRM); + $userManager->updateUser($user); if (null === $response = $event->getResponse()) { $url = $this->router->generate('nucleos_profile_registration_confirmed');
run / Mutation Tests (8.3): src/Action/ConfirmRegistrationAction.php#L68
Escaped Mutant for Mutator "MethodCallRemoval": @@ @@ $url = $this->router->generate('nucleos_profile_registration_confirmed'); $response = new RedirectResponse($url); } - $this->eventDispatcher->dispatch(new FilterUserResponseEvent($user, $request, $response), NucleosProfileEvents::REGISTRATION_CONFIRMED); + return $response; } }
run / Mutation Tests (8.3): src/Action/EditProfileAction.php#L67
Escaped Mutant for Mutator "InstanceOf_": @@ @@ public function __invoke(Request $request): Response { $user = $this->security->getUser(); - if (!$user instanceof UserInterface) { + if (!true) { throw new AccessDeniedException('This user does not have access to this section.'); } $event = new GetResponseUserEvent($user, $request);
run / Mutation Tests (8.3): src/Action/EditProfileAction.php#L72
Escaped Mutant for Mutator "MethodCallRemoval": @@ @@ throw new AccessDeniedException('This user does not have access to this section.'); } $event = new GetResponseUserEvent($user, $request); - $this->eventDispatcher->dispatch($event, NucleosProfileEvents::PROFILE_EDIT_INITIALIZE); + if (null !== $event->getResponse()) { return $event->getResponse(); }
run / Mutation Tests (8.3): src/Action/EditProfileAction.php#L93
Escaped Mutant for Mutator "MethodCallRemoval": @@ @@ private function updateUser(Request $request, FormInterface $form, UserInterface $user): Response { $event = new UserFormEvent($user, $form, $request); - $this->eventDispatcher->dispatch($event, NucleosProfileEvents::PROFILE_EDIT_SUCCESS); + $this->userManager->updateUser($user); if (null === $response = $event->getResponse()) { $response = new RedirectResponse($this->router->generate('nucleos_profile_profile_show'));
run / Mutation Tests (8.3): src/Action/EditProfileAction.php#L101
Escaped Mutant for Mutator "MethodCallRemoval": @@ @@ if (null === $response = $event->getResponse()) { $response = new RedirectResponse($this->router->generate('nucleos_profile_profile_show')); } - $this->eventDispatcher->dispatch(new FilterUserResponseEvent($user, $request, $response), NucleosProfileEvents::PROFILE_EDIT_COMPLETED); + return $response; } private function createForm(UserInterface $user): FormInterface
run / Mutation Tests (8.3): src/Action/EditProfileAction.php#L112
Escaped Mutant for Mutator "ArrayItemRemoval": @@ @@ } private function createForm(UserInterface $user): FormInterface { - return $this->formFactory->create(ProfileFormType::class, $user, ['validation_groups' => ['Profile', 'User', 'Default']])->add('save', SubmitType::class, ['label' => 'profile.edit.submit']); + return $this->formFactory->create(ProfileFormType::class, $user, [])->add('save', SubmitType::class, ['label' => 'profile.edit.submit']); } }
run / Mutation Tests (8.3): src/Action/EditProfileAction.php#L113
Escaped Mutant for Mutator "ArrayItemRemoval": @@ @@ } private function createForm(UserInterface $user): FormInterface { - return $this->formFactory->create(ProfileFormType::class, $user, ['validation_groups' => ['Profile', 'User', 'Default']])->add('save', SubmitType::class, ['label' => 'profile.edit.submit']); + return $this->formFactory->create(ProfileFormType::class, $user, ['validation_groups' => ['User', 'Default']])->add('save', SubmitType::class, ['label' => 'profile.edit.submit']); } }
run / Mutation Tests (8.3): src/Action/EditProfileAction.php#L115
Escaped Mutant for Mutator "ArrayItemRemoval": @@ @@ } private function createForm(UserInterface $user): FormInterface { - return $this->formFactory->create(ProfileFormType::class, $user, ['validation_groups' => ['Profile', 'User', 'Default']])->add('save', SubmitType::class, ['label' => 'profile.edit.submit']); + return $this->formFactory->create(ProfileFormType::class, $user, ['validation_groups' => ['Profile', 'User', 'Default']])->add('save', SubmitType::class, []); } }
run / Mutation Tests (8.3): src/Action/RegistrationAction.php#L95
Escaped Mutant for Mutator "MethodCallRemoval": @@ @@ { $event = new UserFormEvent($user, $form, $request); $this->eventDispatcher->dispatch($event, NucleosProfileEvents::REGISTRATION_SUCCESS); - $this->userManager->updateUser($user); + if (null === $response = $event->getResponse()) { $response = new RedirectResponse($this->router->generate('nucleos_profile_registration_confirmed')); }
run / Test: PHP 8.3, Symfony 7.0, highest)
The following actions use a deprecated Node.js version and will be forced to run on node20: actions/cache@v3. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
run / Test: PHP 8.2, Symfony 6.4, highest)
The following actions use a deprecated Node.js version and will be forced to run on node20: actions/cache@v3. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/