]> git.ipfire.org Git - thirdparty/vim.git/commitdiff
CI: Add Codecov token (#13999)
authorK.Takata <kentkt@csc.jp>
Fri, 9 Feb 2024 17:18:11 +0000 (02:18 +0900)
committerGitHub <noreply@github.com>
Fri, 9 Feb 2024 17:18:11 +0000 (18:18 +0100)
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>
.github/workflows/ci.yml

index 0d34658a7d5b10a52d399d1714b1341307b8b2c9..2746605d2bd2412b50b65cea86f68696bb803510 100644 (file)
@@ -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 }}