summaryrefslogtreecommitdiffstats
path: root/.github/workflows
diff options
context:
space:
mode:
authorK.Takata <kentkt@csc.jp>2024-02-10 02:18:11 +0900
committerGitHub <noreply@github.com>2024-02-09 18:18:11 +0100
commitbd2f45a6e530df91ad07d49967ff148eb8a1c1e1 (patch)
treee9b31b1c5c032cf17d0b3f7094b66f4295ddaa41 /.github/workflows
parentdf23d7f4bd7546f3152ea003856525591218565b (diff)
CI: Add Codecov token (#13999)
codecov-action@4 requires a token. Add it to the repository secrets. See: https://github.com/vim/vim/pull/13978#issuecomment-1935336624 Signed-off-by: Ken Takata <kentkt@csc.jp> Signed-off-by: Christian Brabandt <cb@256bit.org>
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/ci.yml2
1 files changed, 2 insertions, 0 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 0d34658a7d..2746605d2b 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -289,6 +289,7 @@ jobs:
uses: codecov/codecov-action@v4
with:
flags: linux,${{ matrix.features }}-${{ matrix.compiler }}-${{ matrix.extra }}
+ token: ${{ secrets.CODECOV_TOKEN }}
- name: ASan logs
if: contains(matrix.extra, 'asan') && !cancelled()
@@ -681,3 +682,4 @@ jobs:
with:
directory: src
flags: windows,${{ matrix.toolchain }}-${{ matrix.arch }}-${{ matrix.features }}
+ token: ${{ secrets.CODECOV_TOKEN }}