From 77b1f4528442a122f7eab9e6c6929143b3e2cdb1 Mon Sep 17 00:00:00 2001 From: Will McCutchen Date: Fri, 13 Sep 2024 17:41:08 -0400 Subject: [PATCH] chore(ci): fix code coverage uploads --- .github/workflows/ci.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index b386874..ac3a7d8 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -33,8 +33,11 @@ jobs: - name: test run: make testci - - uses: codecov/codecov-action@v3 + - uses: codecov/codecov-action@v4 if: ${{ matrix.go-version == 'stable' }} + with: + token: ${{ secrets.CODECOV_TOKEN }} + fail_ci_if_error: true lint: runs-on: ubuntu-latest