Skip to content

Commit 7df4ad2

Browse files
[TASK] Use PHP 8.3 in CGL workflow
1 parent 035b491 commit 7df4ad2

File tree

4 files changed

+11
-4
lines changed

4 files changed

+11
-4
lines changed

.github/settings.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,12 @@ rulesets:
109109
integration_id: 15368
110110
- context: 'Tests (PHP 8.3 & lowest dependencies)'
111111
integration_id: 15368
112+
- context: 'Tests (PHP 8.4 & locked dependencies)'
113+
integration_id: 15368
114+
- context: 'Tests (PHP 8.4 & highest dependencies)'
115+
integration_id: 15368
116+
- context: 'Tests (PHP 8.4 & lowest dependencies)'
117+
integration_id: 15368
112118
- context: 'Test coverage'
113119
integration_id: 15368
114120
bypass_actors:

.github/workflows/cgl.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@ jobs:
2020
- name: Setup PHP
2121
uses: shivammathur/setup-php@v2
2222
with:
23-
php-version: 8.4
23+
# @todo Use PHP 8.4 once PHP-CS-Fixer supports PHP 8.4
24+
php-version: 8.3
2425
tools: composer:v2, composer-require-checker, composer-unused, cs2pr
2526
env:
2627
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
strategy:
1616
fail-fast: false
1717
matrix:
18-
php-version: ["8.1", "8.2", "8.3"]
18+
php-version: ["8.1", "8.2", "8.3", "8.4"]
1919
dependencies: ["locked", "highest", "lowest"]
2020
steps:
2121
- uses: actions/checkout@v4

composer.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)