Skip to content

Commit 6b06171

Browse files
committed
5.3.0
1 parent 2a2d60e commit 6b06171

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
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/ReportGenerator-GitHub-Action@5.2.5
16+
uses: danielpalme/ReportGenerator-GitHub-Action@5.3.0
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, OpenCover, CsvSummary, Html, Html_Dark, Html_Light, Html_BlueRed, HtmlChart, HtmlInline, HtmlInline_AzurePipelines, HtmlInline_AzurePipelines_Dark, HtmlInline_AzurePipelines_Light, HtmlSummary, Html_BlueRed_Summary, JsonSummary, CodeClimate, Latex, LatexSummary, lcov, MarkdownSummary, MarkdownSummaryGithub, MarkdownDeltaSummary, MHtml, SvgChart, SonarQube, TeamCitySummary, TextSummary, TextDeltaSummary, Xml, XmlSummary
20+
reporttypes: 'HtmlInline;Cobertura' # The output formats and scope (separated by semicolon) Values: Badges, Clover, Cobertura, OpenCover, CsvSummary, Html, Html_Dark, Html_Light, Html_BlueRed, HtmlChart, HtmlInline, HtmlInline_AzurePipelines, HtmlInline_AzurePipelines_Dark, HtmlInline_AzurePipelines_Light, HtmlSummary, Html_BlueRed_Summary, JsonSummary, CodeClimate, Latex, LatexSummary, lcov, MarkdownSummary, MarkdownAssembliesSummary, MarkdownSummaryGithub, MarkdownDeltaSummary, MHtml, SvgChart, 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
@@ -42,7 +42,7 @@ Object.defineProperty(exports, "__esModule", ({ value: true }));
4242
const core = __importStar(__nccwpck_require__(2186));
4343
const exec = __importStar(__nccwpck_require__(1514));
4444
const fs = __importStar(__nccwpck_require__(7147));
45-
const VERSION = '5.2.5';
45+
const VERSION = '5.3.0';
4646
function run() {
4747
return __awaiter(this, void 0, void 0, function* () {
4848
try {

package-lock.json

Lines changed: 6 additions & 6 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.2.5",
3+
"version": "5.3.0",
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.2.5';
5+
const VERSION = '5.3.0';
66

77
async function run() {
88
try {

0 commit comments

Comments
 (0)