Skip to content

Commit

Permalink
ci: upgrade codecov action (#112)
Browse files Browse the repository at this point in the history
Fixes CI failures due to codecov/codecov-action#322
  • Loading branch information
mmcloughlin authored Aug 21, 2021
1 parent 2c982c1 commit 6ed9dad
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,10 @@ jobs:
- name: Test
run: go test -coverprofile=coverage.out -covermode=count ./...
- name: Upload Coverage
uses: codecov/codecov-action@967e2b38a85a62bd61be5529ada27ebc109948c2 #v1.4.1
uses: codecov/codecov-action@51d810878be5422784e86451c0e7c14e5860ec47 # v2.0.2
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: coverage.out
files: coverage.out
flags: unittests

lint:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/stress.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ jobs:
- name: Stress Test
run: ./script/stress -c coverage.out
- name: Upload Coverage
uses: codecov/codecov-action@967e2b38a85a62bd61be5529ada27ebc109948c2 #v1.4.1
uses: codecov/codecov-action@51d810878be5422784e86451c0e7c14e5860ec47 # v2.0.2
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: coverage.out
files: coverage.out
flags: stress

0 comments on commit 6ed9dad

Please sign in to comment.