Skip to content

Update all non-major dependencies #1305

Update all non-major dependencies

Update all non-major dependencies #1305

Triggered via pull request July 1, 2024 15:54
Status Failure
Total duration 54s
Artifacts

continuous-integration.yaml

on: pull_request
Matrix: php cs fixer
Matrix: mutation tests
Matrix: phpunit tests
Matrix: static analysis phpstan
Matrix: static analysis psalm
Fit to window
Zoom out
Zoom in

Annotations

8 errors and 4 warnings
phpunit tests (highest, 8.2, ubuntu-latest)
Process completed with exit code 1.
phpunit tests (highest, 8.3, ubuntu-latest)
The job was canceled because "highest_8_2_ubuntu-latest" failed.
phpunit tests (highest, 8.3, ubuntu-latest)
Process completed with exit code 1.
phpunit tests (lowest, 8.3, ubuntu-latest)
The job was canceled because "highest_8_2_ubuntu-latest" failed.
phpunit tests (locked, 8.3, ubuntu-latest)
The job was canceled because "highest_8_2_ubuntu-latest" failed.
phpunit tests (lowest, 8.2, ubuntu-latest)
The job was canceled because "highest_8_2_ubuntu-latest" failed.
phpunit tests (lowest, 8.2, ubuntu-latest)
The operation was canceled.
phpunit tests (locked, 8.2, ubuntu-latest)
The job was canceled because "highest_8_2_ubuntu-latest" failed.
phpunit tests (lowest, 8.3, ubuntu-latest)
Codecov: Failed to properly create commit: The process '/home/runner/work/_actions/codecov/codecov-action/v4/dist/codecov' failed with exit code 1
phpunit tests (locked, 8.3, ubuntu-latest)
Codecov: Failed to properly create commit: The process '/home/runner/work/_actions/codecov/codecov-action/v4/dist/codecov' failed with exit code 1
mutation tests (locked, 8.2, ubuntu-latest): src/PhraseProvider.php#L168
Escaped Mutant for Mutator "ArrayItemRemoval": --- Original +++ New @@ @@ } public function delete(TranslatorBagInterface $translatorBag): void { - $keys = [[]]; + $keys = []; foreach ($translatorBag->getCatalogues() as $catalogue) { /** @var string $domain */ foreach ($catalogue->getDomains() as $domain) {
mutation tests (locked, 8.2, ubuntu-latest): src/PhraseProvider.php#L253
Escaped Mutant for Mutator "ArrayItemRemoval": --- Original +++ New @@ @@ } private function createLocale(string $locale): void { - $response = $this->httpClient->request('POST', 'locales', ['body' => ['name' => $locale, 'code' => $locale, 'default' => $locale === $this->toPhraseLocale($this->defaultLocale)], 'headers' => ['Content-Type' => 'application/x-www-form-urlencoded']]); + $response = $this->httpClient->request('POST', 'locales', ['body' => ['name' => $locale, 'code' => $locale, 'default' => $locale === $this->toPhraseLocale($this->defaultLocale)], 'headers' => []]); if (201 !== $statusCode = $response->getStatusCode()) { $this->logger->error(sprintf('Unable to create locale "%s" in phrase: "%s".', $locale, $response->getContent(false))); $this->throwProviderException($statusCode, $response, 'Unable to create locale phrase.');