Skip to content

Update all non-major dependencies #1303

Update all non-major dependencies

Update all non-major dependencies #1303

Triggered via pull request June 24, 2024 03:11
Status Failure
Total duration 4m 19s
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 8 warnings
phpunit tests (highest, 8.3, ubuntu-latest)
Process completed with exit code 1.
phpunit tests (locked, 8.2, ubuntu-latest)
The job was canceled because "highest_8_3_ubuntu-latest" failed.
phpunit tests (lowest, 8.2, ubuntu-latest)
The job was canceled because "highest_8_3_ubuntu-latest" failed.
phpunit tests (lowest, 8.2, ubuntu-latest)
The operation was canceled.
phpunit tests (locked, 8.3, ubuntu-latest)
The job was canceled because "highest_8_3_ubuntu-latest" failed.
phpunit tests (lowest, 8.3, ubuntu-latest)
The job was canceled because "highest_8_3_ubuntu-latest" failed.
phpunit tests (lowest, 8.3, ubuntu-latest)
The operation was canceled.
phpunit tests (highest, 8.2, ubuntu-latest)
The job was canceled because "highest_8_3_ubuntu-latest" failed.
phpunit tests (locked, 8.2, 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)
Failed to download action 'https://api.github.com/repos/actions/checkout/tarball/692973e3d937129bcbf40652eb9f2f61becf3332'. Error: The request was canceled due to the configured HttpClient.Timeout of 100 seconds elapsing.
mutation tests (locked, 8.2, ubuntu-latest)
Back off 14.067 seconds before retry.
mutation tests (locked, 8.2, ubuntu-latest)
Failed to download action 'https://api.github.com/repos/actions/checkout/tarball/692973e3d937129bcbf40652eb9f2f61becf3332'. Error: The request was canceled due to the configured HttpClient.Timeout of 100 seconds elapsing.
mutation tests (locked, 8.2, ubuntu-latest)
Back off 10.136 seconds before retry.
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.');