From dcae60725e48f564b3f65c5399564f46a9a15805 Mon Sep 17 00:00:00 2001 From: Antonello Provenzano Date: Mon, 2 Sep 2024 20:27:19 +0200 Subject: [PATCH] Updating the version of codecov action in CI/CD Pipeline --- .github/workflows/cd.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index 37468c2..7b8ddd6 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -52,13 +52,13 @@ jobs: if: matrix.os == 'ubuntu-latest' run: dotnet test --no-build --verbosity normal -c Release -f ${{ env.DOTNET_TFM }} /p:CollectCoverage=true /p:CoverletOutputFormat=opencover /p:Exclude="[*.XUnit]*" - - name: Test (Ubuntu) + - name: Test (Windows) if: matrix.os == 'windows-latest' run: dotnet test --no-build --verbosity normal -c Release -f ${{ env.DOTNET_TFM }} --filter DB!=SQLServer /p:CollectCoverage=true /p:CoverletOutputFormat=opencover /p:Exclude="[*.XUnit]*" - name: Collect to Codecov - uses: codecov/codecov-action@v3 + uses: codecov/codecov-action@v4 with: token: ${{ secrets.OCM_CODECOV_TOKEN }}