Bump Codecov from 1.12.3 to 1.12.4 in /build (#2285)

* Bump Codecov from 1.12.3 to 1.12.4 in /build

Bumps [Codecov](https://github.com/codecov/codecov-exe) from 1.12.3 to 1.12.4.
- [Release notes](https://github.com/codecov/codecov-exe/releases)
- [Changelog](https://github.com/codecov/codecov-exe/blob/master/Changelog.md)
- [Commits](https://github.com/codecov/codecov-exe/compare/1.12.3...1.12.4)

Signed-off-by: dependabot[bot] <support@github.com>

* fix path to codecov executable

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Brendan Forster <github@brendanforster.com>
This commit is contained in:
dependabot[bot]
2021-02-21 17:10:51 -04:00
committed by GitHub
parent 4fbbe4ca2c
commit 8b0fb13685
2 changed files with 2 additions and 2 deletions

View File

@@ -10,7 +10,7 @@
<PackageReference Include="Cake.Coverlet" Version="2.5.1" />
<PackageReference Include="Cake.Frosting" Version="1.0.0" />
<PackageReference Include="Cake.Codecov" Version="1.0.0" />
<PackageReference Include="Codecov" Version="1.12.3" />
<PackageReference Include="Codecov" Version="1.12.4" />
</ItemGroup>
</Project>

View File

@@ -51,7 +51,7 @@ public sealed class CodeCoverage : FrostingTask<Context>
var userProfilePath = context.EnvironmentVariable("USERPROFILE");
var codecovPath = new DirectoryPath(userProfilePath)
.CombineWithFilePath(".nuget\\packages\\codecov\\1.12.3\\tools\\codecov.exe");
.CombineWithFilePath(".nuget\\packages\\codecov\\1.12.4\\tools\\codecov.exe");
context.Tools.RegisterFile(codecovPath);