Skip to content

Commit a96e422

Browse files
committed
v2.3.1.2
- CI workflow adjusted, actions updated to actual versions
1 parent ade071b commit a96e422

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/main.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
- 7.*
3737
steps:
3838
- name: Checkout code
39-
uses: actions/checkout@v3
39+
uses: actions/checkout@v4
4040

4141
- name: Install PHP with PCOV
4242
uses: shivammathur/setup-php@v2
@@ -71,7 +71,7 @@ jobs:
7171
run: php vendor/bin/phpunit
7272

7373
- name: Upload coverage file
74-
uses: actions/upload-artifact@v3
74+
uses: actions/upload-artifact@v4
7575
with:
7676
name: phpunit-${{ matrix.php }}-${{ matrix.dependencies }}-${{ hashFiles('composer.lock') }}.coverage
7777
path: build/coverage.xml
@@ -90,16 +90,16 @@ jobs:
9090

9191
steps:
9292
- name: Checkout code
93-
uses: actions/checkout@v3
93+
uses: actions/checkout@v4
9494

9595
- name: Download coverage files
96-
uses: actions/download-artifact@v3
96+
uses: actions/download-artifact@v4
9797
with:
9898
path: reports
9999

100100
- name: Upload to Codecov
101101
env:
102102
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
103-
uses: codecov/codecov-action@v2
103+
uses: codecov/codecov-action@v4
104104
with:
105105
directory: reports

0 commit comments

Comments
 (0)