From c106915e24962fdcbdee0fae2711c7609313ced2 Mon Sep 17 00:00:00 2001 From: Drew Oldag <47493171+drewoldag@users.noreply.github.com> Date: Thu, 16 May 2024 14:16:44 -0700 Subject: [PATCH] Update testing-and-coverage.yml to use codecov v4 Update action to use latest version of codecov action. --- .github/workflows/testing-and-coverage.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/testing-and-coverage.yml b/.github/workflows/testing-and-coverage.yml index 64117bb..c3fc2bb 100644 --- a/.github/workflows/testing-and-coverage.yml +++ b/.github/workflows/testing-and-coverage.yml @@ -34,4 +34,6 @@ jobs: run: | python -m pytest tests -m "not slow" --cov=lephare --cov-report=xml - name: Upload coverage report to codecov - uses: codecov/codecov-action@v3 + uses: codecov/codecov-action@v4 + with: + token: ${{ secrets.CODECOV_TOKEN }}