Skip to content

Commit c532e9a

Browse files
committed
Merge remote-tracking branch 'origin/2.18.x' into 3.0.x
2 parents dab3c4a + b769877 commit c532e9a

20 files changed

+50
-42
lines changed

.github/workflows/coding-standards.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,6 @@ on:
2626
jobs:
2727
coding-standards:
2828
name: "Coding Standards"
29-
uses: "doctrine/.github/.github/workflows/coding-standards.yml@8.0.0"
29+
uses: "doctrine/.github/.github/workflows/coding-standards.yml@v12.2.0"
3030
with:
3131
composer-options: "--prefer-dist --prefer-stable"

.github/workflows/composer-lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@ on:
1717
jobs:
1818
composer-lint:
1919
name: "Composer Lint"
20-
uses: "doctrine/.github/.github/workflows/composer-lint.yml@8.0.0"
20+
uses: "doctrine/.github/.github/workflows/composer-lint.yml@v12.2.0"

.github/workflows/continuous-integration.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ jobs:
113113
run: "vendor/bin/phpunit --coverage-clover=coverage.xml"
114114

115115
- name: "Upload coverage file"
116-
uses: "actions/upload-artifact@v4"
116+
uses: "actions/upload-artifact@v5"
117117
with:
118118
name: "phpunit-${{ matrix.php-version }}-${{ matrix.dependencies }}-${{ hashFiles('composer.lock') }}.coverage"
119119
path: "coverage.xml"
@@ -133,7 +133,7 @@ jobs:
133133
fetch-depth: 2
134134

135135
- name: "Download coverage files"
136-
uses: "actions/download-artifact@v5"
136+
uses: "actions/download-artifact@v6"
137137
with:
138138
path: "reports"
139139

.github/workflows/documentation.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@ on:
1717
jobs:
1818
documentation:
1919
name: "Documentation"
20-
uses: "doctrine/.github/.github/workflows/documentation.yml@8.0.0"
20+
uses: "doctrine/.github/.github/workflows/documentation.yml@v12.2.0"

.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@8.0.0"
11+
uses: "doctrine/.github/.github/workflows/release-on-milestone-closed.yml@v12.2.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
@@ -26,4 +26,4 @@ on:
2626
jobs:
2727
static-analysis:
2828
name: "Static Analysis"
29-
uses: "doctrine/.github/.github/workflows/phpstan.yml@8.0.0"
29+
uses: "doctrine/.github/.github/workflows/phpstan.yml@v12.2.0"

.github/workflows/website-schema.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@ on:
1818
jobs:
1919
json-validate:
2020
name: "Validate JSON schema"
21-
uses: "doctrine/.github/.github/workflows/website-schema.yml@8.0.0"
21+
uses: "doctrine/.github/.github/workflows/website-schema.yml@v12.2.0"

docs/composer.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"require-dev": {
3+
"doctrine/docs-builder": "^1.0"
4+
},
5+
"config": {
6+
"sort-packages": true
7+
}
8+
}

phpstan.neon.dist

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@ parameters:
44
- config
55
- src
66
- tests
7-
scanFiles:
8-
- vendor/symfony/dependency-injection/Loader/Configurator/functions.php
97
ignoreErrors:
108
# phpstan has no array shape intersection support https://github.com/phpstan/phpstan/issues/12414
119
- message: '#unresolvable type.#'

tests/CacheSchemaSubscriberTest.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,10 @@ public function testSchemaSubscriberWiring(): void
3232
'kernel.build_dir' => sys_get_temp_dir(),
3333
'kernel.environment' => 'test',
3434
'kernel.runtime_environment' => '%%env(default:kernel.environment:APP_RUNTIME_ENV)%%',
35+
'kernel.runtime_mode.web' => false,
3536
'kernel.root_dir' => __DIR__ . '/../../../../', // src dir
3637
'kernel.project_dir' => __DIR__ . '/../../../../', // src dir
38+
'kernel.share_dir' => sys_get_temp_dir(),
3739
'kernel.bundles_metadata' => [],
3840
'kernel.charset' => 'UTF-8',
3941
'kernel.container_class' => ContainerBuilder::class,

0 commit comments

Comments
 (0)