Skip to content

github-actions(deps): Bump actions/checkout from 4.1.5 to 4.1.6 #1789

github-actions(deps): Bump actions/checkout from 4.1.5 to 4.1.6

github-actions(deps): Bump actions/checkout from 4.1.5 to 4.1.6 #1789

Triggered via pull request May 17, 2024 15:48
Status Success
Total duration 34s
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

9 warnings
Dependency Analysis (7.4, locked)
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/cache@v3.3.2. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
Mutation Tests (7.4, locked): src/Holder.php#L32
Escaped Mutant for Mutator "PregMatchRemoveCaret": --- Original +++ New @@ @@ */ public static function fromString(string $value) : self { - if (1 === \preg_match('/^(\\r\\n|\\n|\\r)/', $value)) { + if (1 === \preg_match('/(\\r\\n|\\n|\\r)/', $value)) { throw InvalidHolder::multiline(); } $trimmed = \trim($value);
Mutation Tests (7.4, locked): src/Template.php#L35
Escaped Mutant for Mutator "UnwrapTrim": --- Original +++ New @@ @@ */ public static function fromFile(string $name) : self { - if ('' === \trim($name)) { + if ('' === $name) { throw Exception\InvalidFile::emptyFileName(); } if (!\file_exists($name)) {
Mutation Tests (7.4, locked): src/Template.php#L36
Escaped Mutant for Mutator "Throw_": --- Original +++ New @@ @@ public static function fromFile(string $name) : self { if ('' === \trim($name)) { - throw Exception\InvalidFile::emptyFileName(); + Exception\InvalidFile::emptyFileName(); } if (!\file_exists($name)) { throw Exception\InvalidFile::doesNotExist($name);
Mutation Tests (7.4, locked): src/Template.php#L40
Escaped Mutant for Mutator "Throw_": --- Original +++ New @@ @@ throw Exception\InvalidFile::emptyFileName(); } if (!\file_exists($name)) { - throw Exception\InvalidFile::doesNotExist($name); + Exception\InvalidFile::doesNotExist($name); } if (!\is_file($name)) { throw Exception\InvalidFile::doesNotExist($name);
Mutation Tests (7.4, locked): src/Template.php#L53
Escaped Mutant for Mutator "FalseValue": --- Original +++ New @@ @@ throw Exception\InvalidFile::canNotBeRead($name); } $contents = \file_get_contents($name); - if (false === $contents) { + if (true === $contents) { throw Exception\InvalidFile::canNotBeRead($name); } return new self($contents);
Mutation Tests (7.4, locked): src/Year.php#L30
Escaped Mutant for Mutator "PregMatchRemoveCaret": --- Original +++ New @@ @@ */ public static function fromString(string $value) : self { - if (1 !== \preg_match('/^\\d{4}$/', $value)) { + if (1 !== \preg_match('/\\d{4}$/', $value)) { throw Exception\InvalidYear::fromValue($value); } return new self($value);
Mutation Tests (7.4, locked): src/Year.php#L30
Escaped Mutant for Mutator "PregMatchRemoveDollar": --- Original +++ New @@ @@ */ public static function fromString(string $value) : self { - if (1 !== \preg_match('/^\\d{4}$/', $value)) { + if (1 !== \preg_match('/^\\d{4}/', $value)) { throw Exception\InvalidYear::fromValue($value); } return new self($value);
Code Coverage (7.4, locked)
Codecov: Failed to properly create commit: The process '/home/runner/work/_actions/codecov/codecov-action/v4.4.0/dist/codecov' failed with exit code 1