From b1c6d945c67519deb9de83908988574960fa5846 Mon Sep 17 00:00:00 2001 From: Andrei Aaron Date: Sat, 18 Feb 2023 09:10:28 +0200 Subject: [PATCH] chore(codecov): use a token to authenticate to codecov (#1212) This should not be necessary for public repos, but should help with rate limitting Signed-off-by: Andrei Aaron --- .github/workflows/ci-cd.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci-cd.yml b/.github/workflows/ci-cd.yml index 546e64c8..55eae48d 100644 --- a/.github/workflows/ci-cd.yml +++ b/.github/workflows/ci-cd.yml @@ -117,6 +117,8 @@ jobs: ARCH: ${{ matrix.arch }} - name: Upload code coverage uses: codecov/codecov-action@v3 + with: + token: ${{ secrets.CODECOV_TOKEN }} - name: Generate GraphQL Introspection JSON on Release if: github.event_name == 'release' && github.event.action == 'published' && matrix.os == 'linux' && matrix.arch == 'amd64'