Skip to content

Commit f9e9dce

Browse files
committed
Release 5.1.13
1 parent 71e61f2 commit f9e9dce

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ Use the online [configuration tool](https://reportgenerator.io/usage) to get sta
1313
dotnet-quality: 'ga'
1414

1515
- name: ReportGenerator
16-
uses: danielpalme/[email protected].12
16+
uses: danielpalme/[email protected].13
1717
with:
1818
reports: 'coverage.xml' # REQUIRED # The coverage reports that should be parsed (separated by semicolon). Globbing is supported.
1919
targetdir: 'coveragereport' # REQUIRED # The directory where the generated report should be saved.
20-
reporttypes: 'HtmlInline;Cobertura' # The output formats and scope (separated by semicolon) Values: Badges, Clover, Cobertura, CsvSummary, Html, Html_Dark, Html_Light, HtmlChart, HtmlInline, HtmlInline_AzurePipelines, HtmlInline_AzurePipelines_Dark, HtmlInline_AzurePipelines_Light, HtmlSummary, JsonSummary, Latex, LatexSummary, lcov, MarkdownSummary, MHtml, PngChart, SonarQube, TeamCitySummary, TextSummary, Xml, XmlSummary
20+
reporttypes: 'HtmlInline;Cobertura' # The output formats and scope (separated by semicolon) Values: Badges, Clover, Cobertura, CsvSummary, Html, Html_Dark, Html_Light, HtmlChart, HtmlInline, HtmlInline_AzurePipelines, HtmlInline_AzurePipelines_Dark, HtmlInline_AzurePipelines_Light, HtmlSummary, JsonSummary, Latex, LatexSummary, lcov, MarkdownSummary, MarkdownSummaryGithub, MarkdownDeltaSummary, MHtml, PngChart, SonarQube, TeamCitySummary, TextSummary, TextDeltaSummary, Xml, XmlSummary
2121
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.
2222
historydir: '' # Optional directory for storing persistent coverage information. Can be used in future reports to show coverage evolution.
2323
plugins: '' # Optional plugin files for custom reports or custom history storage (separated by semicolon).

dist/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1769,7 +1769,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
17691769
const core = __importStar(__webpack_require__(470));
17701770
const exec = __importStar(__webpack_require__(986));
17711771
const fs = __importStar(__webpack_require__(747));
1772-
const VERSION = '5.1.12';
1772+
const VERSION = '5.1.13';
17731773
function run() {
17741774
return __awaiter(this, void 0, void 0, function* () {
17751775
try {

package-lock.json

Lines changed: 2 additions & 2 deletions
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": "5.1.12",
3+
"version": "5.1.13",
44
"description": "",
55
"main": "lib/reportgenerator.js",
66
"scripts": {

src/reportgenerator.ts

Lines changed: 1 addition & 1 deletion
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 = '5.1.12';
5+
const VERSION = '5.1.13';
66

77
async function run() {
88
try {

0 commit comments

Comments
 (0)