Merge pull request #902 from ergebnis/dependabot/github_actions/actio… #1960
integrate.yaml
on: push
Matrix: Code Coverage
Matrix: Coding Standards
Matrix: Dependency Analysis
Matrix: Mutation Tests
Matrix: Refactoring
Matrix: Security Analysis
Matrix: Static Code Analysis
Matrix: Tests
Annotations
36 warnings
Dependency Analysis (7.4, locked)
Your workflow is using a version of actions/cache that is scheduled for deprecation, actions/[email protected]. Please update your workflow to use either v3 or v4 of actions/cache to avoid interruptions. Learn more: https://github.blog/changelog/2024-12-05-notice-of-upcoming-releases-and-breaking-changes-for-github-actions/#actions-cache-v1-v2-and-actions-toolkit-cache-package-closing-down
|
Tests (8.4, locked)
Cache not found for keys: php-8.4-composer-locked-59f90a141b38c3970fa8dd289fc58205f51fe9af52f8775a51f7f66b4409fbc0, php-8.4-composer-locked-
|
Tests (8.3, lowest)
Cache not found for keys: php-8.3-composer-lowest-59f90a141b38c3970fa8dd289fc58205f51fe9af52f8775a51f7f66b4409fbc0, php-8.3-composer-lowest-
|
Tests (8.1, highest)
Cache not found for keys: php-8.1-composer-highest-59f90a141b38c3970fa8dd289fc58205f51fe9af52f8775a51f7f66b4409fbc0, php-8.1-composer-highest-
|
Tests (8.1, locked)
Cache not found for keys: php-8.1-composer-locked-59f90a141b38c3970fa8dd289fc58205f51fe9af52f8775a51f7f66b4409fbc0, php-8.1-composer-locked-
|
Tests (8.4, lowest)
Cache not found for keys: php-8.4-composer-lowest-59f90a141b38c3970fa8dd289fc58205f51fe9af52f8775a51f7f66b4409fbc0, php-8.4-composer-lowest-
|
Tests (8.2, locked)
Cache not found for keys: php-8.2-composer-locked-59f90a141b38c3970fa8dd289fc58205f51fe9af52f8775a51f7f66b4409fbc0, php-8.2-composer-locked-
|
Coding Standards (7.4, locked)
Cache not found for keys: php-7.4-php-cs-fixer-main, php-7.4-php-cs-fixer-main, php-7.4-php-cs-fixer-
|
Coding Standards (7.4, locked)
Cache not found for keys: php-7.4-composer-locked-59f90a141b38c3970fa8dd289fc58205f51fe9af52f8775a51f7f66b4409fbc0, php-7.4-composer-locked-
|
Refactoring (7.4, locked)
Cache not found for keys: php-7.4-rector-main, php-7.4-rector-main, php-7.4-rector-
|
Refactoring (7.4, locked)
Failed to save: Failed to CreateCacheEntry: Received non-retryable error: Failed request: (409) Conflict: cache entry with the same key, version, and scope already exists
|
Refactoring (7.4, locked)
Cache not found for keys: php-7.4-composer-locked-59f90a141b38c3970fa8dd289fc58205f51fe9af52f8775a51f7f66b4409fbc0, php-7.4-composer-locked-
|
Tests (8.0, lowest)
Cache not found for keys: php-8.0-composer-lowest-59f90a141b38c3970fa8dd289fc58205f51fe9af52f8775a51f7f66b4409fbc0, php-8.0-composer-lowest-
|
Static Code Analysis (7.4, locked)
Failed to save: Failed to CreateCacheEntry: Received non-retryable error: Failed request: (409) Conflict: cache entry with the same key, version, and scope already exists
|
Static Code Analysis (7.4, locked)
Cache not found for keys: php-7.4-composer-locked-59f90a141b38c3970fa8dd289fc58205f51fe9af52f8775a51f7f66b4409fbc0, php-7.4-composer-locked-
|
Tests (8.3, locked)
Cache not found for keys: php-8.3-composer-locked-59f90a141b38c3970fa8dd289fc58205f51fe9af52f8775a51f7f66b4409fbc0, php-8.3-composer-locked-
|
Tests (7.4, lowest)
Cache not found for keys: php-7.4-composer-lowest-59f90a141b38c3970fa8dd289fc58205f51fe9af52f8775a51f7f66b4409fbc0, php-7.4-composer-lowest-
|
Tests (7.4, highest)
Cache not found for keys: php-7.4-composer-highest-59f90a141b38c3970fa8dd289fc58205f51fe9af52f8775a51f7f66b4409fbc0, php-7.4-composer-highest-
|
Tests (7.4, locked)
Failed to save: Failed to CreateCacheEntry: Received non-retryable error: Failed request: (409) Conflict: cache entry with the same key, version, and scope already exists
|
Tests (7.4, locked)
Cache not found for keys: php-7.4-composer-locked-59f90a141b38c3970fa8dd289fc58205f51fe9af52f8775a51f7f66b4409fbc0, php-7.4-composer-locked-
|
Tests (8.4, highest)
Cache not found for keys: php-8.4-composer-highest-59f90a141b38c3970fa8dd289fc58205f51fe9af52f8775a51f7f66b4409fbc0, php-8.4-composer-highest-
|
Mutation Tests (7.4, locked)
Failed to save: Failed to CreateCacheEntry: Received non-retryable error: Failed request: (409) Conflict: cache entry with the same key, version, and scope already exists
|
Mutation Tests (7.4, locked)
Cache not found for keys: php-7.4-composer-locked-59f90a141b38c3970fa8dd289fc58205f51fe9af52f8775a51f7f66b4409fbc0, php-7.4-composer-locked-
|
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);
|
Tests (8.2, highest)
Cache not found for keys: php-8.2-composer-highest-59f90a141b38c3970fa8dd289fc58205f51fe9af52f8775a51f7f66b4409fbc0, php-8.2-composer-highest-
|
Tests (8.2, lowest)
Cache not found for keys: php-8.2-composer-lowest-59f90a141b38c3970fa8dd289fc58205f51fe9af52f8775a51f7f66b4409fbc0, php-8.2-composer-lowest-
|
Tests (8.0, highest)
Cache not found for keys: php-8.0-composer-highest-59f90a141b38c3970fa8dd289fc58205f51fe9af52f8775a51f7f66b4409fbc0, php-8.0-composer-highest-
|
Tests (8.0, locked)
Cache not found for keys: php-8.0-composer-locked-59f90a141b38c3970fa8dd289fc58205f51fe9af52f8775a51f7f66b4409fbc0, php-8.0-composer-locked-
|
Tests (8.3, highest)
Cache not found for keys: php-8.3-composer-highest-59f90a141b38c3970fa8dd289fc58205f51fe9af52f8775a51f7f66b4409fbc0, php-8.3-composer-highest-
|
Tests (8.1, lowest)
Cache not found for keys: php-8.1-composer-lowest-59f90a141b38c3970fa8dd289fc58205f51fe9af52f8775a51f7f66b4409fbc0, php-8.1-composer-lowest-
|