Skip to content

Commit fa63c1c

Browse files
committed
Add PHP 8.3
1 parent f7f01e2 commit fa63c1c

File tree

1 file changed

+11
-7
lines changed

1 file changed

+11
-7
lines changed

.github/workflows/main.yml

+11-7
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,12 @@ jobs:
3030
- php-versions: '8.2'
3131
phpunit-version: '9.5.27'
3232
experimental: false
33+
- php-versions: '8.3'
34+
phpunit-version: '9.5.27'
35+
experimental: false
3336
steps:
3437
- name: Checkout
35-
uses: actions/checkout@v3
38+
uses: actions/checkout@v4
3639

3740
- name: Setup PHP
3841
uses: shivammathur/setup-php@v2
@@ -67,24 +70,25 @@ jobs:
6770
run: phpunit --coverage-text --coverage-clover=coverage.xml
6871

6972
- name: Upload coverage data to codecov
70-
if: matrix.php-versions == '8.1'
71-
uses: codecov/codecov-action@v3
73+
if: matrix.php-versions == '8.2'
74+
uses: codecov/codecov-action@v4
7275
with:
7376
files: ./coverage.xml
77+
token: ${{ secrets.CODECOV_TOKEN }}
7478
fail_ci_if_error: true
7579

7680
build-docs:
7781
runs-on: ubuntu-latest
7882
steps:
7983
- name: Checkout
80-
uses: actions/checkout@v3
84+
uses: actions/checkout@v4
8185
with:
8286
# fetch complete history so that the "last updated by" texts can be set correctly
8387
fetch-depth: 0
84-
- name: Use Node.js 18.x
85-
uses: actions/setup-node@v1
88+
- name: Use Node.js 20.x
89+
uses: actions/setup-node@v4
8690
with:
87-
node-version: 18.x
91+
node-version: 20.x
8892
- name: Build Docs
8993
run: |
9094
cd docs

0 commit comments

Comments
 (0)