Skip to content

Commit

Permalink
build: fix codecov action issue
Browse files Browse the repository at this point in the history
codecov action started erroring 
Run codecov/codecov-action@v1.0.6
/home/runner/work/_actions/codecov/codecov-action/v1.0.6/dist/index.js:20817
      throw error;
      ^

Error: connect ETIMEDOUT 35.199.43.247:443
    at TCPConnectWrap.afterConnect [as oncomplete] (net.js:1129:14) {
  errno: 'ETIMEDOUT',
  code: 'ETIMEDOUT',
  syscall: 'connect',
  address: '35.199.43.247',
  port: 443
}

Let's see if update to latest will fix it.
  • Loading branch information
Ivelin Ivanov authored May 4, 2020
1 parent 78ad94f commit 1e3c53a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
env:
CYPRESS_RECORD_KEY: ${{ secrets.CYPRESS_RECORD_KEY }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- uses: codecov/codecov-action@v1.0.6
- uses: codecov/codecov-action@v1
with:
token: ${{ secrets.CODECOV_TOKEN }} # not required for public repos
file: ./coverage/coverage-final.json # optional
Expand Down

0 comments on commit 1e3c53a

Please sign in to comment.