diff options
author | Philip H <47042125+pheiduck@users.noreply.github.com> | 2022-04-16 21:46:38 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2022-04-16 21:46:38 +0100 |
commit | 34ffa102806da6b7562a010a2dca08448d3cc465 (patch) | |
tree | 607ff9698d3794484c1abffa7439e9b8a172fba0 /.github | |
parent | c360b2566ce2390d45d9436a6a85719fe2b387d5 (diff) | |
download | vim-git-34ffa102806da6b7562a010a2dca08448d3cc465.tar.gz |
patch 8.2.4768: CI: codecov upload sometimes does not workv8.2.4768
Problem: CI: codecov upload sometimes does not work.
Solution: Use action v3 instead of v2. (closes #10209)
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/ci.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4bb5e29fc..bdeb918a5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -254,7 +254,7 @@ jobs: - name: Codecov if: matrix.coverage - uses: codecov/codecov-action@v2 + uses: codecov/codecov-action@v3 with: flags: linux,${{ matrix.features }}-${{ matrix.compiler }}-${{ matrix.extra }} |