-
Notifications
You must be signed in to change notification settings - Fork 1
build(deps): bump codecov/codecov-action from 6 to 7 #58
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -228,7 +228,7 @@ jobs: | |
| fi | ||
|
|
||
| - name: 📊 Upload coverage reports to Codecov | ||
| uses: codecov/codecov-action@v6 | ||
| uses: codecov/codecov-action@v7 | ||
| with: | ||
| files: TestResults/CoverageReport/Summary.xml | ||
| flags: unittests | ||
|
Comment on lines
228
to
234
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🚩 coverage-reports job will never find TestResults directory The (Refers to lines 221-237) Was this helpful? React with 👍 or 👎 to provide feedback. |
||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🚩 Operator precedence issue in create-pr job condition (pre-existing)
The
ifcondition at lines 274-276 reads:Due to
&&binding more tightly than||, this evaluates as(push && feature/) || bug/ || hotfix/, meaning the job would trigger forbug/orhotfix/branches on any event type (includingpull_request), not justpushevents. The likely intent waspush && (feature/ || bug/ || hotfix/). This is pre-existing and unrelated to this PR's change.(Refers to lines 274-276)
Was this helpful? React with 👍 or 👎 to provide feedback.