# HG changeset patch # User Bram Moolenaar # Date 1671292804 -3600 # Node ID e8fcb04c96c991bb9342bb7b9a5a309aa6154b9b # Parent 01782143b2371bad6f3a9832d9f7ba866c6c42b9 patch 9.0.1071: Codecov action version is too specific Commit: https://github.com/vim/vim/commit/b5328b46a79d1383fb1d7d193e7271efcf2f996a Author: dundargoc Date: Sat Dec 17 15:47:45 2022 +0000 patch 9.0.1071: Codecov action version is too specific Problem: Codecov action version is too specific. Solution: Only use "v3" to automatically use the latest stable version. (closes #11720) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -254,7 +254,7 @@ jobs: - name: Codecov if: matrix.coverage - uses: codecov/codecov-action@v3.1.1 + uses: codecov/codecov-action@v3 with: flags: linux,${{ matrix.features }}-${{ matrix.compiler }}-${{ matrix.extra }} @@ -613,7 +613,7 @@ jobs: - name: Codecov if: matrix.coverage - uses: codecov/codecov-action@v3.1.1 + uses: codecov/codecov-action@v3 with: directory: src flags: windows,${{ matrix.toolchain }}-${{ matrix.arch }}-${{ matrix.features }} diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -696,6 +696,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 1071, +/**/ 1070, /**/ 1069,