From 039f6e4379e84f80a2402f3dedd2f3bc323c3c57 Mon Sep 17 00:00:00 2001 From: Jacob Oaks Date: Mon, 29 Apr 2024 16:39:14 -0400 Subject: [PATCH] CI: Upgrade to codecov 4 & use token. This upgrades codecov CI action to version 4, and uses the codecov token when uploading, since tokenless uploading is no longer supported for some cases. --- .github/workflows/ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 83e1d79..f24093c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -30,7 +30,9 @@ jobs: run: make cover - name: Upload coverage to codecov.io - uses: codecov/codecov-action@v3 + uses: codecov/codecov-action@v4 + env: + CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} lint: name: Lint