Skip to content

Commit 9391294

Browse files
committed
chore: drop php 8.2
1 parent 29bfd52 commit 9391294

File tree

117 files changed

+707
-526
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

117 files changed

+707
-526
lines changed

.github/actions/codecov-report/action.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -20,29 +20,29 @@ runs:
2020
using: composite
2121
steps:
2222
- name: Download base commit SHA artifact
23-
if: ${{ github.event_name == 'pull_request' && inputs.php-version == '8.2' && inputs.dependencies == 'locked' }}
23+
if: ${{ github.event_name == 'pull_request' && inputs.php-version == '8.3' && inputs.dependencies == 'locked' }}
2424
uses: dawidd6/action-download-artifact@v11
2525
with:
2626
workflow: test-suite.yml
2727
name: codecov-base-commit-sha-${{ inputs.base-branch }}
2828
search_artifacts: true
2929

3030
- name: Read base commit SHA
31-
if: ${{ github.event_name == 'pull_request' && inputs.php-version == '8.2' && inputs.dependencies == 'locked' }}
31+
if: ${{ github.event_name == 'pull_request' && inputs.php-version == '8.3' && inputs.dependencies == 'locked' }}
3232
shell: bash
3333
run: |
3434
ARTIFACT_CONTENT=$(cat codecov-base-commit-sha-${{ inputs.base-branch }}.txt)
3535
echo "codecov_base_commit_sha=$ARTIFACT_CONTENT" >> $GITHUB_ENV
3636
3737
- name: Upload test results (baseline)
38-
if: ${{ github.event_name == 'push' && !cancelled() && inputs.php-version == '8.2' && inputs.dependencies == 'locked' }}
38+
if: ${{ github.event_name == 'push' && !cancelled() && inputs.php-version == '8.3' && inputs.dependencies == 'locked' }}
3939
uses: codecov/test-results-action@v1
4040
with:
4141
token: ${{ inputs.token }}
4242
directory: ./var/phpunit/logs
4343

4444
- name: Upload code coverage (baseline)
45-
if: ${{ github.event_name == 'push' && !cancelled() && inputs.php-version == '8.2' && inputs.dependencies == 'locked' }}
45+
if: ${{ github.event_name == 'push' && !cancelled() && inputs.php-version == '8.3' && inputs.dependencies == 'locked' }}
4646
uses: codecov/codecov-action@v5
4747
with:
4848
token: ${{ inputs.token }}
@@ -65,7 +65,7 @@ runs:
6565
commit_parent: ${{ env.codecov_base_commit_sha }}
6666

6767
- name: Get branch name and commit SHA
68-
if: ${{ github.event_name == 'push' && inputs.php-version == '8.2' && inputs.dependencies == 'locked' }}
68+
if: ${{ github.event_name == 'push' && inputs.php-version == '8.3' && inputs.dependencies == 'locked' }}
6969
shell: bash
7070
run: |
7171
branch_name=${GITHUB_REF#refs/heads/}
@@ -74,20 +74,20 @@ runs:
7474
echo "codecov_commit_sha=$commit_sha" >> $GITHUB_ENV
7575
7676
- name: Save commit SHA to file
77-
if: ${{ github.event_name == 'push' && inputs.php-version == '8.2' && inputs.dependencies == 'locked' }}
77+
if: ${{ github.event_name == 'push' && inputs.php-version == '8.3' && inputs.dependencies == 'locked' }}
7878
shell: bash
7979
run: echo -n "${{ env.codecov_commit_sha }}" > codecov-base-commit-sha-${{ env.codecov_branch_name }}.txt
8080

8181
- name: Upload commit SHA as artifact
82-
if: ${{ github.event_name == 'push' && inputs.php-version == '8.2' && inputs.dependencies == 'locked' }}
82+
if: ${{ github.event_name == 'push' && inputs.php-version == '8.3' && inputs.dependencies == 'locked' }}
8383
uses: actions/upload-artifact@v4
8484
with:
8585
name: codecov-base-commit-sha-${{ env.codecov_branch_name }}
8686
path: codecov-base-commit-sha-${{ env.codecov_branch_name }}.txt
8787
overwrite: true
8888

8989
- name: Add SHA to step summary
90-
if: ${{ github.event_name == 'push' && inputs.php-version == '8.2' && inputs.dependencies == 'locked' }}
90+
if: ${{ github.event_name == 'push' && inputs.php-version == '8.3' && inputs.dependencies == 'locked' }}
9191
shell: bash
9292
run: |
9393
echo "Baseline commit SHA for Codecov: ${{ env.codecov_commit_sha }}" >> $GITHUB_STEP_SUMMARY

.github/workflows/baseline.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
dependencies:
2626
- "locked"
2727
php-version:
28-
- "8.2"
28+
- "8.3"
2929

3030
steps:
3131
- name: "Checkout"
@@ -99,7 +99,7 @@ jobs:
9999
dependencies:
100100
- "locked"
101101
php-version:
102-
- "8.2"
102+
- "8.3"
103103

104104
steps:
105105
- name: "Set Git Ref"
@@ -157,7 +157,7 @@ jobs:
157157
fail-fast: false
158158
matrix:
159159
php-version:
160-
- "8.2"
160+
- "8.3"
161161

162162
steps:
163163
- name: "Checkout"

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- name: "Setup PHP Environment"
2727
uses: "./.github/actions/setup-php-env"
2828
with:
29-
php-version: "8.2"
29+
php-version: "8.3"
3030
dependencies: "locked"
3131
coverage: "none"
3232
extensions: ':psr, bcmath, dom, hash, json, mbstring, xml, xmlwriter, xmlreader, zlib'

.github/workflows/job-benchmark-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
dependencies:
1111
- "locked"
1212
php-version:
13-
- "8.2"
13+
- "8.3"
1414
operating-system:
1515
- "ubuntu-latest"
1616

.github/workflows/job-examples.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
fail-fast: false
1010
matrix:
1111
php-version:
12-
- "8.2"
12+
- "8.3"
1313

1414
steps:
1515
- name: "Checkout"

.github/workflows/job-extension-tests.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ jobs:
1010
dependencies:
1111
- "locked"
1212
php-version:
13-
- "8.2"
1413
- "8.3"
1514
- "8.4"
1615
- "8.5"

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
dependencies:
1111
- "locked"
1212
php-version:
13-
- "8.2"
13+
- "8.3"
1414
operating-system:
1515
- "ubuntu-latest"
1616

.github/workflows/job-pg-query-extension.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
strategy:
1414
fail-fast: false
1515
matrix:
16-
php: ['8.2', '8.3', '8.4']
16+
php: ['8.3', '8.4']
1717

1818
steps:
1919
- uses: actions/checkout@v5
@@ -60,7 +60,7 @@ jobs:
6060
- name: Setup PHP Environment
6161
uses: ./.github/actions/setup-php-env
6262
with:
63-
php-version: '8.2'
63+
php-version: '8.3'
6464
dependencies: locked
6565
extensions: ':psr, bcmath, dom, hash, json, mbstring, xml, xmlwriter, xmlreader, zlib'
6666
tools: 'composer:v2, phpize, php-config'

.github/workflows/job-static-analyze.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
dependencies:
1212
- "locked"
1313
php-version:
14-
- "8.2"
14+
- "8.3"
1515
operating-system:
1616
- "ubuntu-latest"
1717

.github/workflows/job-tests.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,6 @@ jobs:
6161
matrix:
6262
dependencies: ${{ fromJSON(inputs.dependencies) }}
6363
php-version:
64-
- "8.2"
6564
- "8.3"
6665
- "8.4"
6766
- "8.5"

0 commit comments

Comments
 (0)