Skip to content

Commit

Permalink
Merge pull request #1943 from nextcloud/dependabot/github_actions/sta…
Browse files Browse the repository at this point in the history
…ble3/codecov/codecov-action-4

Build(deps): Bump codecov/codecov-action from 3 to 4
  • Loading branch information
Chartman123 authored Feb 25, 2024
2 parents f597213 + 7bc953d commit 73ac804
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/node-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,9 @@ jobs:
run: npm run test:coverage --if-present

- name: Collect coverage
uses: codecov/codecov-action@eaaf4bedf32dbdc6b720b63067d99c4d77d6047d # v3.1.4
uses: codecov/codecov-action@e0b68c6749509c5f83f984dd99a76a1c1a231044 # v4.0.1
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
with:
files: ./coverage/lcov.info

Expand Down
8 changes: 6 additions & 2 deletions .github/workflows/phpunit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,9 @@ jobs:

- name: Upload Unit coverage
if: matrix.php-versions == matrix.coverage-on
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@v4
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
with:
root_dir: ./apps/${{ env.APP_NAME }}
files: ./apps/${{ env.APP_NAME }}/tests/clover.unit.xml
Expand All @@ -89,7 +91,9 @@ jobs:

- name: Upload Integration coverage
if: matrix.php-versions == matrix.coverage-on
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@v4
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
with:
root_dir: ./apps/${{ env.APP_NAME }}
files: ./apps/${{ env.APP_NAME }}/tests/clover.integration.xml
Expand Down

0 comments on commit 73ac804

Please sign in to comment.