From 0bcc6910f46faf6ef17e7c5e1c174095ed640ddd Mon Sep 17 00:00:00 2001 From: Dolan Date: Fri, 11 Oct 2024 00:22:43 +0100 Subject: [PATCH] Use codecov token (#2748) * Use codecov token * Using env to pass token --- .github/workflows/default.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/default.yml b/.github/workflows/default.yml index d07293b602..12b446ef57 100644 --- a/.github/workflows/default.yml +++ b/.github/workflows/default.yml @@ -31,10 +31,12 @@ jobs: - name: Test run: npm run test:ci - name: Codecov - uses: codecov/codecov-action@v3 + uses: codecov/codecov-action@v4 with: fail_ci_if_error: true verbose: true + env: + CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} lint: name: Lint runs-on: ubuntu-latest