Skip to content

github-actions(deps): bump codecov/codecov-action from 5.1.1 to 5.1.2 #1708

github-actions(deps): bump codecov/codecov-action from 5.1.1 to 5.1.2

github-actions(deps): bump codecov/codecov-action from 5.1.1 to 5.1.2 #1708

Triggered via pull request December 23, 2024 08:06
Status Success
Total duration 32s
Artifacts

integrate.yaml

on: pull_request
Matrix: Code Coverage
Matrix: Coding Standards
Matrix: Dependency Analysis
Matrix: Mutation Tests
Matrix: Refactoring
Matrix: Security Analysis
Matrix: Static Code Analysis
Matrix: Tests
Fit to window
Zoom out
Zoom in

Annotations

33 warnings
Tests (7.4, locked)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
Tests (8.2, locked)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
Security Analysis (7.4, locked)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
Tests (8.3, locked)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
Tests (8.3, lowest)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
Code Coverage (7.4, locked)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
Tests (8.3, highest)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
Refactoring (7.4, locked)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
Tests (8.4, locked)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
Tests (8.0, highest)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
Tests (8.0, locked)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
Tests (8.4, highest)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
Tests (8.1, locked)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
Tests (8.4, lowest)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
Tests (8.0, lowest)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
Tests (8.1, highest)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
Tests (7.4, lowest)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
Mutation Tests (7.4, locked)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
Mutation Tests (7.4, locked): src/Printer.php#L47
Escaped Mutant for Mutator "FalseValue": --- Original +++ New @@ @@ public function print(string $json, string $indent = ' ', string $newLine = \PHP_EOL) : string { try { - \json_decode($json, false, 512, \JSON_THROW_ON_ERROR); + \json_decode($json, true, 512, \JSON_THROW_ON_ERROR); } catch (\JsonException $exception) { throw new \InvalidArgumentException(\sprintf('"%s" is not valid JSON.', $json)); }
Mutation Tests (7.4, locked): src/Printer.php#L48
Escaped Mutant for Mutator "DecrementInteger": --- Original +++ New @@ @@ public function print(string $json, string $indent = ' ', string $newLine = \PHP_EOL) : string { try { - \json_decode($json, false, 512, \JSON_THROW_ON_ERROR); + \json_decode($json, false, 511, \JSON_THROW_ON_ERROR); } catch (\JsonException $exception) { throw new \InvalidArgumentException(\sprintf('"%s" is not valid JSON.', $json)); }
Mutation Tests (7.4, locked): src/Printer.php#L48
Escaped Mutant for Mutator "IncrementInteger": --- Original +++ New @@ @@ public function print(string $json, string $indent = ' ', string $newLine = \PHP_EOL) : string { try { - \json_decode($json, false, 512, \JSON_THROW_ON_ERROR); + \json_decode($json, false, 513, \JSON_THROW_ON_ERROR); } catch (\JsonException $exception) { throw new \InvalidArgumentException(\sprintf('"%s" is not valid JSON.', $json)); }
Mutation Tests (7.4, locked): src/Printer.php#L65
Escaped Mutant for Mutator "PregMatchRemoveCaret": --- Original +++ New @@ @@ if (1 !== \preg_match('/^( +|\\t+)$/', $indent)) { throw new \InvalidArgumentException(\sprintf('"%s" is not a valid indent.', $indent)); } - if (1 !== \preg_match('/^(?>\\r\\n|\\n|\\r)$/', $newLine)) { + if (1 !== \preg_match('/(?>\\r\\n|\\n|\\r)$/', $newLine)) { throw new \InvalidArgumentException(\sprintf('"%s" is not a valid new-line character sequence.', $newLine)); } $printed = '';
Mutation Tests (7.4, locked): src/Printer.php#L65
Escaped Mutant for Mutator "PregMatchRemoveDollar": --- Original +++ New @@ @@ if (1 !== \preg_match('/^( +|\\t+)$/', $indent)) { throw new \InvalidArgumentException(\sprintf('"%s" is not a valid indent.', $indent)); } - if (1 !== \preg_match('/^(?>\\r\\n|\\n|\\r)$/', $newLine)) { + if (1 !== \preg_match('/^(?>\\r\\n|\\n|\\r)/', $newLine)) { throw new \InvalidArgumentException(\sprintf('"%s" is not a valid new-line character sequence.', $newLine)); } $printed = '';
Mutation Tests (7.4, locked): src/Printer.php#L74
Escaped Mutant for Mutator "MBString": --- Original +++ New @@ @@ } $printed = ''; $indentLevel = 0; - $length = \mb_strlen($json); + $length = strlen($json); $withinStringLiteral = false; $stringLiteral = ''; $noEscape = true;
Mutation Tests (7.4, locked): src/Printer.php#L79
Escaped Mutant for Mutator "LessThan": --- Original +++ New @@ @@ $withinStringLiteral = false; $stringLiteral = ''; $noEscape = true; - for ($i = 0; $i < $length; ++$i) { + for ($i = 0; $i <= $length; ++$i) { /** * Grab the next character in the string. */
Mutation Tests (7.4, locked): src/Printer.php#L155
Escaped Mutant for Mutator "MBString": --- Original +++ New @@ @@ if ('}' === $character || ']' === $character) { --$indentLevel; $trimmed = \rtrim($printed); - $previousNonWhitespaceCharacter = \mb_substr($trimmed, -1); + $previousNonWhitespaceCharacter = substr($trimmed, -1); /** * Collapse empty {} and []. */
Dependency Analysis (7.4, locked)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
Static Code Analysis (7.4, locked)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
Tests (7.4, highest)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
Coding Standards (7.4, locked)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
Tests (8.1, lowest)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
Tests (8.2, lowest)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
Tests (8.2, highest)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636