Skip to content

Commit 4ecdcbb

Browse files
committed
Update CI configuration and .gitignore for PHP 8.3 and Ubuntu 24.04
Switched CI workflows to use PHP 8.3 and Ubuntu 24.04 for improved compatibility and support. Adjusted `.gitignore` to exclude `.phpunit.cache` and removed an obsolete PHPUnit cache file.
1 parent 9e81193 commit 4ecdcbb

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.github/workflows/ci.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@ jobs:
66

77
static-analysis:
88

9-
runs-on: ubuntu-20.04
9+
runs-on: ubuntu-24.04
1010

1111
steps:
1212
- name: Setup PHP
1313
uses: shivammathur/setup-php@v2
1414
with:
15-
php-version: '8.1'
15+
php-version: '8.3'
1616

1717
- name: Checkout Code
1818
uses: actions/checkout@v2
@@ -25,13 +25,13 @@ jobs:
2525

2626
check-code-style:
2727

28-
runs-on: ubuntu-20.04
28+
runs-on: ubuntu-24.04
2929

3030
steps:
3131
- name: Setup PHP
3232
uses: shivammathur/setup-php@v2
3333
with:
34-
php-version: '8.1'
34+
php-version: '8.3'
3535

3636
- name: Checkout Code
3737
uses: actions/checkout@v2
@@ -42,9 +42,9 @@ jobs:
4242
- name: Check Code Style
4343
run: composer phpcs-dry
4444

45-
testing-php81:
45+
testing-php:
4646

47-
runs-on: ubuntu-20.04
47+
runs-on: ubuntu-24.04
4848

4949
strategy:
5050
fail-fast: false

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,4 @@
33
.php-cs-fixer.cache
44
/build/
55
**/.phpunit.result.cache
6+
/.phpunit.cache/

.phpunit.cache/test-results

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)