-
Notifications
You must be signed in to change notification settings - Fork 25
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
Upgrade codecov-action to v4 #179
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #179 +/- ##
=======================================
Coverage 90.58% 90.58%
=======================================
Files 12 12
Lines 3133 3133
Branches 3133 3133
=======================================
Hits 2838 2838
Misses 211 211
Partials 84 84 ☔ View full report in Codecov by Sentry. |
@@ -95,7 +95,7 @@ jobs: | |||
path: repo_root | |||
|
|||
- name: Upload coverage to Codecov | |||
uses: codecov/codecov-action@v3 | |||
uses: codecov/codecov-action@v4 |
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.
Should this maybe be v4.1
, if v4.0
has the bug?
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.
codecov-action
maintainers seem to move v4
tag as they release new minor versions. v4
points to v4.1.0
according to this. I think it will be simpler to have it as v4 so we don't need to change when v4.2 is released.
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.
Should this maybe be
v4.1
, ifv4.0
has the bug?
Good question!
codecov-action
maintainers seem to movev4
tag as they release new minor versions.v4
points tov4.1.0
according to this.
Yes, this is the way tags for GitHub actions typically work: people move them around so that you get the latest semver-compatible version when you depend on a given tag. It's a bit silly, but that's the way things work last time I checked.
The GitHub documentation still recommends this: Using tags for release management.
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.
Thanks for tracking this!
With the issues codecov/feedback#263 and codecov/codecov-action#1287 resolved, we can upgrade to v4 again.
This fixes #173