Skip to content

Commit 6f6eac6

Browse files
committed
Release 4.8.10
1 parent b956935 commit 6f6eac6

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,14 @@
88
- name: Setup .NET Core # Required to execute ReportGenerator
99
uses: actions/setup-dotnet@v1
1010
with:
11-
dotnet-version: 5.0.300
11+
dotnet-version: 5.0.301
1212

1313
- name: ReportGenerator
14-
uses: danielpalme/[email protected].9
14+
uses: danielpalme/[email protected].10
1515
with:
1616
reports: 'coverage.xml' # REQUIRED # The coverage reports that should be parsed (separated by semicolon). Globbing is supported.
1717
targetdir: 'coveragereport' # REQUIRED # The directory where the generated report should be saved.
18-
reporttypes: 'HtmlInline;Cobertura' # The output formats and scope (separated by semicolon) Values: Badges, Clover, Cobertura, CsvSummary, Html, HtmlChart, HtmlInline, HtmlInline_AzurePipelines, HtmlInline_AzurePipelines_Dark, HtmlSummary, JsonSummary, Latex, LatexSummary, lcov, MHtml, PngChart, SonarQube, TeamCitySummary, TextSummary, Xml, XmlSummary
18+
reporttypes: 'HtmlInline;Cobertura' # The output formats and scope (separated by semicolon) Values: Badges, Clover, Cobertura, CsvSummary, Html, HtmlChart, HtmlInline, HtmlInline_AzurePipelines, HtmlInline_AzurePipelines_Dark, HtmlSummary, JsonSummary, Latex, LatexSummary, lcov, MarkdownSummary, MHtml, PngChart, SonarQube, TeamCitySummary, TextSummary, Xml, XmlSummary
1919
sourcedirs: '' # Optional directories which contain the corresponding source code (separated by semicolon). The source directories are used if coverage report contains classes without path information.
2020
historydir: '' # Optional directory for storing persistent coverage information. Can be used in future reports to show coverage evolution.
2121
plugins: '' # Optional plugin files for custom reports or custom history storage (separated by semicolon).

dist/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1066,7 +1066,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
10661066
const core = __importStar(__webpack_require__(470));
10671067
const exec = __importStar(__webpack_require__(986));
10681068
const fs = __importStar(__webpack_require__(747));
1069-
const VERSION = '4.8.9';
1069+
const VERSION = '4.8.10';
10701070
function run() {
10711071
return __awaiter(this, void 0, void 0, function* () {
10721072
try {
@@ -1089,7 +1089,7 @@ function run() {
10891089
core.info("- name: Setup .NET Core");
10901090
core.info(" uses: actions/setup-dotnet@v1");
10911091
core.info(" with");
1092-
core.info(" dotnet-version: '5.0.300'");
1092+
core.info(" dotnet-version: '5.0.301'");
10931093
return;
10941094
}
10951095
core.info("Detected .NET Core SDK version '" + output + "'");

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ReportGenerator",
3-
"version": "4.8.9",
3+
"version": "4.8.10",
44
"description": "",
55
"main": "lib/reportgenerator.js",
66
"scripts": {

src/reportgenerator.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import * as core from '@actions/core';
22
import * as exec from '@actions/exec';
33
import * as fs from 'fs';
44

5-
const VERSION = '4.8.9';
5+
const VERSION = '4.8.10';
66

77
async function run() {
88
try {
@@ -30,7 +30,7 @@ async function run() {
3030
core.info("- name: Setup .NET Core");
3131
core.info(" uses: actions/setup-dotnet@v1");
3232
core.info(" with");
33-
core.info(" dotnet-version: '5.0.300'");
33+
core.info(" dotnet-version: '5.0.301'");
3434
return;
3535
}
3636

0 commit comments

Comments
 (0)