diff --git a/.github/workflows/dotnet-core.yml b/.github/workflows/dotnet-core.yml index a7d1161..8dfbeec 100644 --- a/.github/workflows/dotnet-core.yml +++ b/.github/workflows/dotnet-core.yml @@ -42,10 +42,10 @@ jobs: - name: Run Tests run: dotnet test -c Release /p:VersionSuffix=${{ steps.set-vars.outputs.versionString }} --verbosity normal /p:CollectCoverage=true /p:CoverletOutputFormat=lcov /p:CoverletOutput='./lcov.info' - name: Upload test coverage - uses: coverallsapp/github-action@1.1.3 + uses: coverallsapp/github-action@v2.3.0 with: github-token: ${{ secrets.GITHUB_TOKEN }} - path-to-lcov: ./Disarm.Tests/lcov.info + file: ./Disarm.Tests/lcov.info - name: Build all run: dotnet build -c Release /p:VersionSuffix=${{ steps.set-vars.outputs.versionString }} working-directory: Disarm.Tests