This repository has been archived by the owner on Sep 12, 2023. It is now read-only.
composer(deps): bump the minor-patch-dependencies group with 4 updates #1041
continuous-integration.yml
on: push
Matrix: Run CI / Lint PHP
Matrix: Run CI / Linting with overtrue/phplint
Matrix: Run CI / Validate composer
Matrix: Run CI / Validate yaml
Matrix: Run CI / Install dependencies
Matrix: Run CI / Check composer dependencies
Matrix: Run CI / Checks with Psalm
Matrix: Run CI / Check Coding Standards with PHP-CS-Fixer
Matrix: Run CI / Check Coding Standards with PHPCS
Matrix: Run CI / Check Rules with PHPMD
Matrix: Run CI / Checks with Rector
Matrix: Run CI / Static Code Analysis with PHPStan
Matrix: UnitTests with PHPUnit
Matrix: Check composer dependencies
Matrix: Code Coverage with PHPUnit
Unit & Integration Tests Status
3s
Annotations
7 warnings
Run CI / Validate composer (ubuntu-20.04, 8.1)
Failed to download action 'https://api.github.com/repos/actions/checkout/tarball/f43a0e5ff2bd294095638e18286ca9a3d1956744'. Error: Response status code does not indicate success: 503 (Service Unavailable).
|
Run CI / Validate composer (ubuntu-20.04, 8.1)
Back off 21.217 seconds before retry.
|
Run CI / Validate yaml (ubuntu-20.04)
Failed to download action 'https://api.github.com/repos/actions/checkout/tarball/f43a0e5ff2bd294095638e18286ca9a3d1956744'. Error: Response status code does not indicate success: 503 (Service Unavailable).
|
Run CI / Validate yaml (ubuntu-20.04)
Back off 26.945 seconds before retry.
|
Run CI / Validate yaml (ubuntu-20.04)
Failed to download action 'https://api.github.com/repos/actionshub/yamllint/tarball/44527dee94752c69445ca88e12331c3fe9cbd885'. Error: Response status code does not indicate success: 503 (Service Unavailable).
|
Run CI / Validate yaml (ubuntu-20.04)
Back off 11.724 seconds before retry.
|
Code Coverage with PHPUnit (ubuntu-20.04, 8.1, lowest):
src/GenericRequestFactory.php#L79
Escaped Mutant for Mutator "CastString":
--- Original
+++ New
@@ @@
/** @throws void */
private function filterHeader(string $header) : string
{
- return (string) preg_replace(["#(?:(?:(?<!\r)\n)|(?:\r(?!\n))|(?:\r\n(?![ \t])))#", '/[^\\x09\\x0a\\x0d\\x20-\\x7E\\x80-\\xFE]/'], '-', $header);
+ return preg_replace(["#(?:(?:(?<!\r)\n)|(?:\r(?!\n))|(?:\r\n(?![ \t])))#", '/[^\\x09\\x0a\\x0d\\x20-\\x7E\\x80-\\xFE]/'], '-', $header);
}
}
|