Skip to content

Commit ee4d0a8

Browse files
committed
Merge branch '3.12.x' into 4.0.x
2 parents f047111 + c33d346 commit ee4d0a8

21 files changed

Lines changed: 653 additions & 496 deletions

.github/workflows/backward-compatibility-check.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,18 +16,18 @@ jobs:
1616
dependencies:
1717
- "locked"
1818
php-version:
19-
- "8.2"
19+
- "8.4"
2020
operating-system:
2121
- "ubuntu-latest"
2222

2323
steps:
2424
- name: "Checkout"
25-
uses: actions/checkout@v4
25+
uses: actions/checkout@v5
2626
with:
2727
fetch-depth: 0
2828

2929
- name: "Install PHP"
30-
uses: "shivammathur/setup-php@2.34.1"
30+
uses: "shivammathur/setup-php@2.35.4"
3131
with:
3232
coverage: "pcov"
3333
php-version: "${{ matrix.php-version }}"

.github/workflows/benchmark.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
services:
1515
postgres:
1616
# Docker Hub image
17-
image: "postgres:17.5"
17+
image: "postgres:17.6"
1818
# Provide the password for postgres
1919
env:
2020
POSTGRES_PASSWORD: postgres
@@ -29,7 +29,7 @@ jobs:
2929
dependencies:
3030
- "locked"
3131
php-version:
32-
- "8.3"
32+
- "8.4"
3333
operating-system:
3434
- "ubuntu-latest"
3535

@@ -38,15 +38,15 @@ jobs:
3838

3939
steps:
4040
- name: "Install PHP"
41-
uses: "shivammathur/setup-php@2.34.1"
41+
uses: "shivammathur/setup-php@2.35.4"
4242
with:
4343
coverage: none
4444
php-version: "${{ matrix.php-version }}"
4545
ini-values: memory_limit=-1, opcache.enable_cli=1, opcache.jit=tracing, opcache.jit_buffer_size=64M
4646
extensions: pdo_sqlite
4747

4848
- name: "Checkout base"
49-
uses: actions/checkout@v4
49+
uses: actions/checkout@v5
5050
with:
5151
ref: ${{ github.base_ref }}
5252

@@ -58,7 +58,7 @@ jobs:
5858
run: "vendor/bin/phpbench run tests/Benchmark --progress=none --report=default --tag=base"
5959

6060
- name: "Checkout"
61-
uses: actions/checkout@v4
61+
uses: actions/checkout@v5
6262
with:
6363
clean: false
6464

.github/workflows/coding-standard.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,16 +20,16 @@ jobs:
2020
dependencies:
2121
- "locked"
2222
php-version:
23-
- "8.3"
23+
- "8.4"
2424
operating-system:
2525
- "ubuntu-latest"
2626

2727
steps:
2828
- name: "Checkout"
29-
uses: actions/checkout@v4
29+
uses: actions/checkout@v5
3030

3131
- name: "Install PHP"
32-
uses: "shivammathur/setup-php@2.34.1"
32+
uses: "shivammathur/setup-php@2.35.4"
3333
with:
3434
coverage: none
3535
php-version: "${{ matrix.php-version }}"

.github/workflows/deptrac.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,16 +20,16 @@ jobs:
2020
dependencies:
2121
- "locked"
2222
php-version:
23-
- "8.3"
23+
- "8.4"
2424
operating-system:
2525
- "ubuntu-latest"
2626

2727
steps:
2828
- name: "Checkout"
29-
uses: actions/checkout@v4
29+
uses: actions/checkout@v5
3030

3131
- name: "Install PHP"
32-
uses: "shivammathur/setup-php@2.34.1"
32+
uses: "shivammathur/setup-php@2.35.4"
3333
with:
3434
coverage: "pcov"
3535
php-version: "${{ matrix.php-version }}"

.github/workflows/docs-build-try.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
name: Deploy docs
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v4
14+
- uses: actions/checkout@v5
1515
with:
1616
fetch-depth: 0
1717

.github/workflows/docs-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
name: Deploy docs
1414
runs-on: ubuntu-latest
1515
steps:
16-
- uses: actions/checkout@v4
16+
- uses: actions/checkout@v5
1717
with:
1818
fetch-depth: 0
1919

.github/workflows/docs-check.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,16 +19,16 @@ jobs:
1919
dependencies:
2020
- "locked"
2121
php-version:
22-
- "8.3"
22+
- "8.4"
2323
operating-system:
2424
- "ubuntu-latest"
2525

2626
steps:
2727
- name: "Checkout"
28-
uses: actions/checkout@v4
28+
uses: actions/checkout@v5
2929

3030
- name: "Install PHP"
31-
uses: "shivammathur/setup-php@2.34.1"
31+
uses: "shivammathur/setup-php@2.35.4"
3232
with:
3333
coverage: none
3434
php-version: "${{ matrix.php-version }}"

.github/workflows/integration.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -49,10 +49,10 @@ jobs:
4949

5050
steps:
5151
- name: "Checkout"
52-
uses: actions/checkout@v4
52+
uses: actions/checkout@v5
5353

5454
- name: "Install PHP"
55-
uses: "shivammathur/setup-php@2.34.1"
55+
uses: "shivammathur/setup-php@2.35.4"
5656
with:
5757
coverage: "pcov"
5858
php-version: "${{ matrix.php-version }}"
@@ -104,10 +104,10 @@ jobs:
104104

105105
steps:
106106
- name: "Checkout"
107-
uses: actions/checkout@v4
107+
uses: actions/checkout@v5
108108

109109
- name: "Install PHP"
110-
uses: "shivammathur/setup-php@2.34.1"
110+
uses: "shivammathur/setup-php@2.35.4"
111111
with:
112112
coverage: "pcov"
113113
php-version: "${{ matrix.php-version }}"
@@ -159,10 +159,10 @@ jobs:
159159

160160
steps:
161161
- name: "Checkout"
162-
uses: actions/checkout@v4
162+
uses: actions/checkout@v5
163163

164164
- name: "Install PHP"
165-
uses: "shivammathur/setup-php@2.34.1"
165+
uses: "shivammathur/setup-php@2.35.4"
166166
with:
167167
coverage: "pcov"
168168
php-version: "${{ matrix.php-version }}"
@@ -193,10 +193,10 @@ jobs:
193193

194194
steps:
195195
- name: "Checkout"
196-
uses: actions/checkout@v4
196+
uses: actions/checkout@v5
197197

198198
- name: "Install PHP"
199-
uses: "shivammathur/setup-php@2.34.1"
199+
uses: "shivammathur/setup-php@2.35.4"
200200
with:
201201
coverage: "pcov"
202202
php-version: "${{ matrix.php-version }}"

.github/workflows/mutation-tests-diff.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,18 +16,18 @@ jobs:
1616
dependencies:
1717
- "locked"
1818
php-version:
19-
- "8.3"
19+
- "8.4"
2020
operating-system:
2121
- "ubuntu-latest"
2222

2323
steps:
2424
- name: "Checkout"
25-
uses: actions/checkout@v4
25+
uses: actions/checkout@v5
2626
with:
2727
fetch-depth: 0
2828

2929
- name: "Install PHP"
30-
uses: "shivammathur/setup-php@2.34.1"
30+
uses: "shivammathur/setup-php@2.35.4"
3131
with:
3232
coverage: "pcov"
3333
php-version: "${{ matrix.php-version }}"

.github/workflows/mutation-tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,16 +20,16 @@ jobs:
2020
dependencies:
2121
- "locked"
2222
php-version:
23-
- "8.3"
23+
- "8.4"
2424
operating-system:
2525
- "ubuntu-latest"
2626

2727
steps:
2828
- name: "Checkout"
29-
uses: actions/checkout@v4
29+
uses: actions/checkout@v5
3030

3131
- name: "Install PHP"
32-
uses: "shivammathur/setup-php@2.34.1"
32+
uses: "shivammathur/setup-php@2.35.4"
3333
with:
3434
coverage: "pcov"
3535
php-version: "${{ matrix.php-version }}"

0 commit comments

Comments
 (0)