Skip to content

Update dependency phpunit/phpunit to ^10.5.21 #789

Update dependency phpunit/phpunit to ^10.5.21

Update dependency phpunit/phpunit to ^10.5.21 #789

Triggered via push June 15, 2024 10:09
Status Success
Total duration 5m 59s
Artifacts

ci.yml

on: push
Matrix: Benchmarks
Matrix: Coding Standards
Matrix: Lint composer.json
Matrix: Static Analysis
Matrix: Tests
Fit to window
Zoom out
Zoom in

Annotations

25 warnings
Tests (ubuntu-latest, 8.1, none)
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/cache@v3. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
Coding Standards (8.2)
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/cache@v3. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
Tests (ubuntu-latest, 8.2, none)
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/cache@v3. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
Benchmarks (8.2, CsvReaderBench)
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/cache@v3. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
Benchmarks (8.2, XlsxReaderInlineBench)
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/cache@v3. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
Benchmarks (8.2, CsvWriterBench)
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/cache@v3. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
Static Analysis (8.2)
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/cache@v3. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
Benchmarks (8.2, XlsxReaderSharedBench)
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/cache@v3. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
Lint composer.json (8.2)
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/cache@v3. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
Benchmarks (8.2, OdsWriterBench)
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/cache@v3. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
Benchmarks (8.2, OdsReaderBench)
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/cache@v3. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
Benchmarks (8.2, XlsxWriterSharedBench)
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/cache@v3. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
Tests (windows-latest, 8.2, none)
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/cache@v3. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
Benchmarks (8.2, XlsxWriterInlineBench)
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/cache@v3. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
Tests (ubuntu-latest, 8.3, pcov)
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/cache@v3. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
Tests (ubuntu-latest, 8.3, pcov): src/Common/Entity/Style/Color.php#L62
Escaped Mutant for Mutator "Concat": @@ @@ */ public static function toARGB(string $rgbColor): string { - return 'FF' . $rgbColor; + return $rgbColor . 'FF'; } /** * Throws an exception is the color component value is outside of bounds (0 - 255).
Tests (ubuntu-latest, 8.3, pcov): src/Common/Entity/Style/Color.php#L62
Escaped Mutant for Mutator "ConcatOperandRemoval": @@ @@ */ public static function toARGB(string $rgbColor): string { - return 'FF' . $rgbColor; + return $rgbColor; } /** * Throws an exception is the color component value is outside of bounds (0 - 255).
Tests (ubuntu-latest, 8.3, pcov): src/Common/Entity/Style/Color.php#L62
Escaped Mutant for Mutator "ConcatOperandRemoval": @@ @@ */ public static function toARGB(string $rgbColor): string { - return 'FF' . $rgbColor; + return 'FF'; } /** * Throws an exception is the color component value is outside of bounds (0 - 255).
Tests (ubuntu-latest, 8.3, pcov): src/Common/Entity/Style/Style.php#L141
Escaped Mutant for Mutator "FalseValue": @@ @@ public function setBorder(Border $border): self { $this->border = $border; - $this->isEmpty = false; + $this->isEmpty = true; return $this; } public function isFontBold(): bool
Tests (ubuntu-latest, 8.3, pcov): src/Common/Entity/Style/Style.php#L154
Escaped Mutant for Mutator "TrueValue": @@ @@ public function setFontBold(): self { $this->fontBold = true; - $this->hasSetFontBold = true; + $this->hasSetFontBold = false; $this->shouldApplyFont = true; $this->isEmpty = false; return $this;
Tests (ubuntu-latest, 8.3, pcov): src/Common/Entity/Style/Style.php#L155
Escaped Mutant for Mutator "TrueValue": @@ @@ { $this->fontBold = true; $this->hasSetFontBold = true; - $this->shouldApplyFont = true; + $this->shouldApplyFont = false; $this->isEmpty = false; return $this; }
Tests (ubuntu-latest, 8.3, pcov): src/Common/Entity/Style/Style.php#L174
Escaped Mutant for Mutator "TrueValue": @@ @@ public function setFontItalic(): self { $this->fontItalic = true; - $this->hasSetFontItalic = true; + $this->hasSetFontItalic = false; $this->shouldApplyFont = true; $this->isEmpty = false; return $this;
Tests (ubuntu-latest, 8.3, pcov): src/Common/Entity/Style/Style.php#L175
Escaped Mutant for Mutator "TrueValue": @@ @@ { $this->fontItalic = true; $this->hasSetFontItalic = true; - $this->shouldApplyFont = true; + $this->shouldApplyFont = false; $this->isEmpty = false; return $this; }
Tests (ubuntu-latest, 8.3, pcov): src/Common/Entity/Style/Style.php#L176
Escaped Mutant for Mutator "FalseValue": @@ @@ $this->fontItalic = true; $this->hasSetFontItalic = true; $this->shouldApplyFont = true; - $this->isEmpty = false; + $this->isEmpty = true; return $this; } public function hasSetFontItalic(): bool
Tests (ubuntu-latest, 8.3, pcov): src/Common/Entity/Style/Style.php#L194
Escaped Mutant for Mutator "TrueValue": @@ @@ public function setFontUnderline(): self { $this->fontUnderline = true; - $this->hasSetFontUnderline = true; + $this->hasSetFontUnderline = false; $this->shouldApplyFont = true; $this->isEmpty = false; return $this;