From b5328b46a79d1383fb1d7d193e7271efcf2f996a Mon Sep 17 00:00:00 2001 From: dundargoc Date: Sat, 17 Dec 2022 15:47:45 +0000 Subject: 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) --- .github/workflows/ci.yml | 4 ++-- src/version.c | 2 ++ 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6e7690e9b4..ae4caf0686 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@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 index cd52fed8bb..f80aeca913 100644 --- a/src/version.c +++ b/src/version.c @@ -695,6 +695,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 1071, /**/ 1070, /**/ -- cgit v1.2.3