From 0ab5811b8c1454bb2da1f785f26e1575cc5a63dc Mon Sep 17 00:00:00 2001 From: Calum Chamberlain Date: Fri, 1 Dec 2023 14:48:31 +1300 Subject: [PATCH] More flexible codecov action version (#556) codecov uploads have been failing, we should try updating the action. --- .github/workflows/runtest.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/runtest.yml b/.github/workflows/runtest.yml index 10e8351d9..505ad288a 100644 --- a/.github/workflows/runtest.yml +++ b/.github/workflows/runtest.yml @@ -72,7 +72,7 @@ jobs: py.test -v -m "slow and not serial and not network" --cov-report=xml --cov-append - name: upload coverage - uses: codecov/codecov-action@v3.1.1 + uses: codecov/codecov-action@v3 with: token: ${{ secrets.CODECOV_TOKEN }} file: ./coverage.xml @@ -131,7 +131,7 @@ jobs: py.test -m "superslow" -s eqcorrscan/tests/tutorials_test.py eqcorrscan/tests/subspace_test.py --cov-report=xml --cov-append - name: upload coverage - uses: codecov/codecov-action@v3.1.1 + uses: codecov/codecov-action@v3 with: token: ${{ secrets.CODECOV_TOKEN }} file: ./coverage.xml @@ -189,7 +189,7 @@ jobs: py.test eqcorrscan/tests/correlate_test.py --cov-report=xml - name: upload coverage - uses: codecov/codecov-action@v3.1.1 + uses: codecov/codecov-action@v3 with: token: ${{ secrets.CODECOV_TOKEN }} file: ./coverage.xml