Skip to content

Commit 3393f41

Browse files
authored
Bump GitHub workflows (#464)
1 parent 37f678b commit 3393f41

File tree

6 files changed

+27
-12
lines changed

6 files changed

+27
-12
lines changed

.github/workflows/coding-standards.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@ on:
1212
jobs:
1313
coding-standards:
1414
name: "Coding Standards"
15-
uses: "doctrine/.github/.github/workflows/coding-standards.yml@1.2.0"
15+
uses: "doctrine/.github/.github/workflows/coding-standards.yml@1.4.1"

.github/workflows/continuous-integration.yml

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,6 @@ on:
1212
jobs:
1313
phpunit:
1414
name: "PHPUnit"
15-
uses: "doctrine/.github/.github/workflows/continuous-integration.yml@1.2.1"
15+
uses: "doctrine/.github/.github/workflows/continuous-integration.yml@1.4.1"
1616
with:
1717
php-versions: '["7.2", "7.3", "7.4", "8.0"]'
18-
19-
phpunit-with-symfony-6:
20-
name: "PHPUnit with Symfony 6.0.x-dev"
21-
uses: "doctrine/.github/.github/workflows/continuous-integration-symfony-unstable.yml@1.4.0"
22-
with:
23-
symfony-version-constraint: "6.0.*"

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,8 @@ 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@1.2.0"
11+
uses: "doctrine/.github/.github/workflows/release-on-milestone-closed.yml@1.4.1"
1212
secrets:
13-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
1413
GIT_AUTHOR_EMAIL: ${{ secrets.GIT_AUTHOR_EMAIL }}
1514
GIT_AUTHOR_NAME: ${{ secrets.GIT_AUTHOR_NAME }}
1615
ORGANIZATION_ADMIN_TOKEN: ${{ secrets.ORGANIZATION_ADMIN_TOKEN }}

.github/workflows/static-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@ on:
1212
jobs:
1313
static-analysis:
1414
name: "Static Analysis"
15-
uses: "doctrine/.github/.github/workflows/static-analysis.yml@1.2.0"
15+
uses: "doctrine/.github/.github/workflows/static-analysis.yml@1.4.1"

composer.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,5 +44,10 @@
4444
},
4545
"autoload-dev": {
4646
"psr-4": { "Doctrine\\Bundle\\MigrationsBundle\\Tests\\": "Tests" }
47+
},
48+
"config": {
49+
"allow-plugins": {
50+
"dealerdirect/phpcodesniffer-composer-installer": true
51+
}
4752
}
4853
}

psalm-baseline.xml

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<files psalm-version="4.11.2@6fba5eb554f9507b72932f9c75533d8af593688d">
2+
<files psalm-version="4.19.0@a2ad69ae4f5ab1f7d225a8dc4e2ec2d9415ed599">
33
<file src="DependencyInjection/Configuration.php">
44
<UndefinedMethod occurrences="1">
55
<code>root</code>
@@ -10,4 +10,21 @@
1010
<code>$configs</code>
1111
</MoreSpecificImplementedParamType>
1212
</file>
13+
<file src="Tests/Fixtures/CustomEntityManager.php">
14+
<ConstructorSignatureMismatch occurrences="1">
15+
<code>$em</code>
16+
</ConstructorSignatureMismatch>
17+
<ImplementedParamTypeMismatch occurrences="1">
18+
<code>$em</code>
19+
</ImplementedParamTypeMismatch>
20+
<InvalidArgument occurrences="1">
21+
<code>$this</code>
22+
</InvalidArgument>
23+
<InvalidPropertyAssignmentValue occurrences="1">
24+
<code>$em</code>
25+
</InvalidPropertyAssignmentValue>
26+
<MethodSignatureMismatch occurrences="1">
27+
<code>public function __construct(CustomEntityManager $em)</code>
28+
</MethodSignatureMismatch>
29+
</file>
1330
</files>

0 commit comments

Comments
 (0)