Skip to content

Commit

Permalink
🐛 Fix Codecov coverage uploading
Browse files Browse the repository at this point in the history
The newest version of the codecov-action fails
to submit coverage, so it isn't ready for use yet.

These changes downgrade codecov-action to v3.

Co-authored-by: Sviatoslav Sydorenko <wk@sydorenko.org.ua>
  • Loading branch information
Jamim and webknjaz committed Feb 2, 2024
1 parent fbd18d3 commit 57de3b6
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -367,7 +367,7 @@ jobs:
coverage xml
shell: bash
- name: Send coverage data to Codecov
uses: codecov/codecov-action@v4
uses: codecov/codecov-action@v3
with:
files: coverage.xml
flags: >-
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/reusable-linters.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:
run: |
make lint
- name: Send coverage data to Codecov
uses: codecov/codecov-action@v4
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.codecov-token }}
files: >-
Expand Down
7 changes: 7 additions & 0 deletions CHANGES/941.contrib.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
`codecov-action <https://github.com/codecov/codecov-action>`_
has been temporarily downgraded to ``v3``
in the GitHub Actions CI/CD workflow definitions
in order to fix uploading coverage to
`Codecov <https://app.codecov.io/gh/aio-libs/multidict>`_.
See `this issue <https://github.com/codecov/codecov-action/issues/1252>`_
for more details.

0 comments on commit 57de3b6

Please sign in to comment.