Skip to content

Commit

Permalink
Update Codecov version
Browse files Browse the repository at this point in the history
  • Loading branch information
lcharette committed Dec 23, 2024
1 parent dd862ea commit c0da6d8
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 15 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/Frontend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@ jobs:

runs-on: ubuntu-latest
name: Test & Coverage - Node ${{ matrix.node_versions }}
needs: Build

steps:
- uses: actions/checkout@v4
Expand All @@ -61,10 +60,10 @@ jobs:

- name: Upload coverage to Codecov
if: github.event_name != 'schedule'
uses: codecov/codecov-action@v4
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: ./_meta/_coverage/clover.xml
files: ./_meta/_coverage/clover.xml
fail_ci_if_error: true

Prettier:
Expand Down
24 changes: 12 additions & 12 deletions .github/workflows/PHPUnit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,10 +63,10 @@ jobs:
- name: Upload coverage to Codecov
if: github.event_name != 'schedule'
uses: codecov/codecov-action@v4
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: ./_meta/coverage.xml
files: ./_meta/coverage.xml
fail_ci_if_error: true

PHPUnit-MySQL:
Expand Down Expand Up @@ -137,10 +137,10 @@ jobs:
- name: Upload coverage to Codecov
if: github.event_name != 'schedule'
uses: codecov/codecov-action@v4
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: ./_meta/coverage.xml
files: ./_meta/coverage.xml
fail_ci_if_error: true

PHPUnit-MariaDB:
Expand Down Expand Up @@ -204,10 +204,10 @@ jobs:
- name: Upload coverage to Codecov
if: github.event_name != 'schedule'
uses: codecov/codecov-action@v4
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: ./_meta/coverage.xml
files: ./_meta/coverage.xml
fail_ci_if_error: true

PHPUnit-SQLite:
Expand Down Expand Up @@ -261,10 +261,10 @@ jobs:
- name: Upload coverage to Codecov
if: github.event_name != 'schedule'
uses: codecov/codecov-action@v4
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: ./_meta/coverage.xml
files: ./_meta/coverage.xml
fail_ci_if_error: true

PHPUnit-Postgre:
Expand Down Expand Up @@ -324,10 +324,10 @@ jobs:
- name: Upload coverage to Codecov
if: github.event_name != 'schedule'
uses: codecov/codecov-action@v4
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: ./_meta/coverage.xml
files: ./_meta/coverage.xml
fail_ci_if_error: true

# PHPUnit-Windows:
Expand Down Expand Up @@ -378,8 +378,8 @@ jobs:
# vendor/bin/phpunit

# - name: Upload coverage to Codecov
# uses: codecov/codecov-action@v4
# uses: codecov/codecov-action@v5
# with:
# token: ${{ secrets.CODECOV_TOKEN }}
# file: ./_meta/coverage.xml
# files: ./_meta/coverage.xml
# fail_ci_if_error: true

0 comments on commit c0da6d8

Please sign in to comment.