Skip to content

Commit 3a7aa19

Browse files
authored
Merge pull request #161 from derrabus/bump/dev-tools
Bump dev tools and CI workflows
2 parents 0870d20 + 8638b26 commit 3a7aa19

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

.github/workflows/coding-standards.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ on:
1111
jobs:
1212
coding-standards:
1313
name: "Coding Standards"
14-
uses: "doctrine/.github/.github/workflows/coding-standards.yml@10.1.0"
14+
uses: "doctrine/.github/.github/workflows/coding-standards.yml@12.0.0"

.github/workflows/continuous-integration.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111
jobs:
1212
phpunit:
1313
name: "PHPUnit"
14-
uses: "doctrine/.github/.github/workflows/continuous-integration.yml@10.1.0"
14+
uses: "doctrine/.github/.github/workflows/continuous-integration.yml@12.0.0"
1515
with:
1616
php-versions: '["8.1", "8.2", "8.3", "8.4"]'
1717
secrets:

.github/workflows/release-on-milestone-closed.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
jobs:
99
release:
1010
name: "Git tag, release & create merge-up PR"
11-
uses: "doctrine/.github/.github/workflows/release-on-milestone-closed.yml@10.1.0"
11+
uses: "doctrine/.github/.github/workflows/release-on-milestone-closed.yml@12.0.0"
1212
secrets:
1313
GIT_AUTHOR_EMAIL: ${{ secrets.GIT_AUTHOR_EMAIL }}
1414
GIT_AUTHOR_NAME: ${{ secrets.GIT_AUTHOR_NAME }}

.github/workflows/static-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ on:
1111
jobs:
1212
static-analysis:
1313
name: "Static Analysis"
14-
uses: "doctrine/.github/.github/workflows/phpstan.yml@10.1.0"
14+
uses: "doctrine/.github/.github/workflows/phpstan.yml@12.0.0"

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
},
1111
"require-dev": {
1212
"doctrine/coding-standard": "^14",
13-
"ergebnis/phpunit-slow-test-detector": "^2.14",
14-
"phpstan/phpstan": "^1.10",
15-
"phpunit/phpunit": "^10.5"
13+
"ergebnis/phpunit-slow-test-detector": "^2.20",
14+
"phpstan/phpstan": "^2.1.31",
15+
"phpunit/phpunit": "^10.5.58"
1616
},
1717
"authors": [
1818
{

tests/TokenizerTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1607,7 +1607,7 @@ public static function assertEqualsTokens(array $expectedTokens, Cursor $cursor)
16071607
}
16081608

16091609
if (serialize($tokens) === serialize($expectedTokens)) { // optimize self::assertEquals() for large inputs
1610-
self::assertTrue(true);
1610+
self::assertTrue(true); // @phpstan-ignore staticMethod.alreadyNarrowedType
16111611
} else {
16121612
self::assertEquals($expectedTokens, $tokens);
16131613
}

0 commit comments

Comments
 (0)