Skip to content

Commit

Permalink
ci: bump actions
Browse files Browse the repository at this point in the history
  • Loading branch information
williamdes committed Jun 25, 2024
1 parent 95178f7 commit 12a4d39
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,9 @@ jobs:
echo "$HOME/.local/bin" >> $GITHUB_PATH
- name: Run grcov
run: grcov . --binary-path target/debug/deps/ -s . -t lcov --branch --ignore-not-existing --ignore '../**' --ignore '/*' -o coverage.lcov
- uses: codecov/codecov-action@v3
- uses: codecov/codecov-action@v4
with:
files: ./coverage.lcov
flags: rust
fail_ci_if_error: true # optional (default = false)
token: ${{ secrets.CODECOV_TOKEN }}
5 changes: 3 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,11 @@ jobs:
yarn run test
yarn run report-coverage
- name: Send coverage
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@v4
with:
flags: node
fail_ci_if_error: true # optional (default = false)
token: ${{ secrets.CODECOV_TOKEN }}

test-php:
name: Test on php ${{ matrix.php-version }} and ${{ matrix.os }}
Expand Down Expand Up @@ -89,7 +90,7 @@ jobs:
- name: Run php tests
run: composer run test -- ${{ matrix.phpunit-options }}
- name: Send coverage
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@v4
with:
files: ./build/logs/clover.xml
flags: php
Expand Down

0 comments on commit 12a4d39

Please sign in to comment.