You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+6-6
Original file line number
Diff line number
Diff line change
@@ -11,20 +11,20 @@
11
11
**As of February 1, 2022, v1 has been fully sunset and no longer functions**
12
12
13
13
Due to the [deprecation](https://about.codecov.io/blog/introducing-codecovs-new-uploader/) of the underlying bash uploader,
14
-
the Codecov GitHub Action has released `v2` which will use the new [uploader](https://github.com/codecov/uploader). You can learn
14
+
the Codecov GitHub Action has released `v2`/`v3` which will use the new [uploader](https://github.com/codecov/uploader). You can learn
15
15
more about our deprecation plan and the new uploader on our [blog](https://about.codecov.io/blog/introducing-codecovs-new-uploader/).
16
16
17
17
We will be restricting any updates to the `v1` Action to security updates and hotfixes.
18
18
19
-
### Migration from `v1` to `v2`
20
-
The `v2` uploader has a few breaking changes for users
19
+
### Migration from `v1` to `v3`
20
+
The `v3` uploader has a few breaking changes for users
21
21
- Multiple fields have not been transferred from the bash uploader or have been deprecated. Notably
22
22
many of the `functionalities` and `gcov_` arguments have been removed. Please check the documentation
23
23
below for the full list.
24
24
25
25
## Usage
26
26
27
-
To integrate Codecov with your Actions pipeline, specify the name of this repository with a tag number (`@v2` is recommended) as a `step` within your `workflow.yml` file.
27
+
To integrate Codecov with your Actions pipeline, specify the name of this repository with a tag number (`@v3` is recommended) as a `step` within your `workflow.yml` file.
28
28
29
29
If you have a *private repository*, this Action also requires you to [provide an upload token](https://docs.codecov.io/docs/frequently-asked-questions#section-where-is-the-repository-upload-token-found-) from [codecov.io](https://www.codecov.io) (tip: in order to avoid exposing your token, store it as a `secret`). Optionally, you can choose to include up to four additional inputs to customize the upload context. **For public repositories, no token is needed**
30
30
@@ -33,7 +33,7 @@ Inside your `.github/workflows/workflow.yml` file:
33
33
```yaml
34
34
steps:
35
35
- uses: actions/checkout@master
36
-
- uses: codecov/codecov-action@v2
36
+
- uses: codecov/codecov-action@v3
37
37
with:
38
38
token: ${{ secrets.CODECOV_TOKEN }} # not required for public repos
0 commit comments