From d071fbf5f738a0a96cb4ddad327c1587e43cca10 Mon Sep 17 00:00:00 2001 From: Sean DuBois Date: Sun, 7 Apr 2024 22:09:14 -0400 Subject: [PATCH] Update codecov action to /v4 Resolves #193 --- .github/workflows/test-wasm.reusable.yml | 4 +++- .github/workflows/test.reusable.yml | 4 +++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test-wasm.reusable.yml b/.github/workflows/test-wasm.reusable.yml index a68fffb..c6113ac 100644 --- a/.github/workflows/test-wasm.reusable.yml +++ b/.github/workflows/test-wasm.reusable.yml @@ -73,8 +73,10 @@ jobs: -exec="${GO_JS_WASM_EXEC}" \ -v ./... - - uses: codecov/codecov-action@v3 + - uses: codecov/codecov-action@v4 with: name: codecov-umbrella fail_ci_if_error: true flags: wasm + env: + CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} diff --git a/.github/workflows/test.reusable.yml b/.github/workflows/test.reusable.yml index 131add4..32ad75a 100644 --- a/.github/workflows/test.reusable.yml +++ b/.github/workflows/test.reusable.yml @@ -72,8 +72,10 @@ jobs: path: /tmp/gotest.log if-no-files-found: error - - uses: codecov/codecov-action@v3 + - uses: codecov/codecov-action@v4 with: name: codecov-umbrella fail_ci_if_error: true flags: go + env: + CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}