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 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to '.github') diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6e7690e9b..ae4caf068 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 }} -- cgit v1.2.1