Skip to content

Commit 01d6b31

Browse files
Stephan Wentzpl-github
authored andcommitted
chore: Add php 8.3 to matrix, set php 8.3 as default version
1 parent 466a9bc commit 01d6b31

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ jobs:
1919
dependencies: ["lowest", "highest"]
2020
php-version:
2121
- "8.2"
22+
- "8.3"
2223

2324
steps:
2425
- name: "Checkout"

.github/workflows/code_coverage.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- uses: actions/checkout@v4
1515
- uses: shivammathur/setup-php@master
1616
with:
17-
php-version: 8.2
17+
php-version: 8.3
1818
coverage: xdebug
1919
- name: Load dependencies from cache
2020
id: composer-cache
@@ -23,9 +23,9 @@ jobs:
2323
- uses: actions/cache@v4
2424
with:
2525
path: ${{ steps.composer-cache.outputs.dir }}
26-
key: ${{ runner.os }}-php8.2-composer-${{ hashFiles('**/composer.json') }}
26+
key: ${{ runner.os }}-php8.3-composer-${{ hashFiles('**/composer.json') }}
2727
restore-keys: |
28-
${{ runner.os }}-php8.2-composer-
28+
${{ runner.os }}-php8.3-composer-
2929
3030
- run: composer install --prefer-dist --no-progress --no-suggest
3131
- run: php vendor/bin/phpunit --coverage-clover build/logs/clover.xml
@@ -37,4 +37,4 @@ jobs:
3737
flags: unittests # optional
3838
name: codecov-umbrella # optional
3939
fail_ci_if_error: true # optional (default = false)
40-
verbose: true # optional (default = false)
40+
verbose: true # optional (default = false)

0 commit comments

Comments
 (0)