Skip to content

Commit 6422316

Browse files
committed
🔧 chore: upgrade Codecov action to v5
🔧 chore: upgrade Codecov action to v5 🔧 CI/CD: - Updated Codecov action from v3 to v5. - Modified 'with' parameters to use 'files' instead of 'file'. - Removed unnecessary parameters for cleaner configuration. This update enhances the CI configuration by upgrading the Codecov action, improving coverage reporting efficiency.
1 parent 3bec8d5 commit 6422316

File tree

1 file changed

+2
-7
lines changed

1 file changed

+2
-7
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -101,15 +101,10 @@ jobs:
101101
poetry run pytest --cov=commitloom --cov-report=xml
102102
103103
- name: Upload coverage to Codecov
104-
uses: codecov/codecov-action@v3
104+
uses: codecov/codecov-action@v5
105105
with:
106-
file: ./coverage.xml
107106
token: ${{ secrets.CODECOV_TOKEN }}
108-
fail_ci_if_error: true
109-
verbose: true
110-
flags: unittests
111-
name: codecov-umbrella
112-
override_branch: ${{ github.ref_name }}
107+
files: ./coverage.xml
113108

114109
build:
115110
name: Build Package

0 commit comments

Comments
 (0)