From b935256fa53858859d608444d9f1bde3d952022f Mon Sep 17 00:00:00 2001 From: Michael McLoughlin Date: Sat, 21 Aug 2021 14:56:26 -0700 Subject: [PATCH] ci: upgrade codecov action (#196) Upgrades codecov-action in order to fix codecov errors CI, for example: https://github.com/mmcloughlin/avo/runs/3389170262?check_suite_focus=true#step:10:11 See codecov/codecov-action#322. --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f39e71c..8db8dde 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -44,16 +44,16 @@ jobs: run: ./script/coverage - name: Upload Unit Test Coverage - uses: codecov/codecov-action@967e2b38a85a62bd61be5529ada27ebc109948c2 #v1.4.1 + uses: codecov/codecov-action@51d810878be5422784e86451c0e7c14e5860ec47 # v2.0.2 with: token: ${{ secrets.CODECOV_TOKEN }} - file: unittests.coverprofile + files: unittests.coverprofile flags: unittests - name: Upload Integration Test Coverage - uses: codecov/codecov-action@967e2b38a85a62bd61be5529ada27ebc109948c2 #v1.4.1 + uses: codecov/codecov-action@51d810878be5422784e86451c0e7c14e5860ec47 # v2.0.2 with: token: ${{ secrets.CODECOV_TOKEN }} - file: integration.coverprofile + files: integration.coverprofile flags: integration lint: