diff --git a/README.md b/README.md index 5097cf6..c9dad3c 100644 --- a/README.md +++ b/README.md @@ -8,14 +8,14 @@ - name: Setup .NET Core # Required to execute ReportGenerator uses: actions/setup-dotnet@v1 with: - dotnet-version: 5.0.300 + dotnet-version: 5.0.301 - name: ReportGenerator - uses: danielpalme/ReportGenerator-GitHub-Action@4.8.9 + uses: danielpalme/ReportGenerator-GitHub-Action@4.8.10 with: reports: 'coverage.xml' # REQUIRED # The coverage reports that should be parsed (separated by semicolon). Globbing is supported. targetdir: 'coveragereport' # REQUIRED # The directory where the generated report should be saved. - 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 + 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 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. historydir: '' # Optional directory for storing persistent coverage information. Can be used in future reports to show coverage evolution. plugins: '' # Optional plugin files for custom reports or custom history storage (separated by semicolon). diff --git a/dist/index.js b/dist/index.js index 81bab2e..9992e08 100644 --- a/dist/index.js +++ b/dist/index.js @@ -1066,7 +1066,7 @@ Object.defineProperty(exports, "__esModule", { value: true }); const core = __importStar(__webpack_require__(470)); const exec = __importStar(__webpack_require__(986)); const fs = __importStar(__webpack_require__(747)); -const VERSION = '4.8.9'; +const VERSION = '4.8.10'; function run() { return __awaiter(this, void 0, void 0, function* () { try { @@ -1089,7 +1089,7 @@ function run() { core.info("- name: Setup .NET Core"); core.info(" uses: actions/setup-dotnet@v1"); core.info(" with"); - core.info(" dotnet-version: '5.0.300'"); + core.info(" dotnet-version: '5.0.301'"); return; } core.info("Detected .NET Core SDK version '" + output + "'"); diff --git a/package-lock.json b/package-lock.json index 7c59679..9a949a8 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "ReportGenerator", - "version": "4.8.9", + "version": "4.8.10", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index bca4eb6..0cc7679 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "ReportGenerator", - "version": "4.8.9", + "version": "4.8.10", "description": "", "main": "lib/reportgenerator.js", "scripts": { diff --git a/src/reportgenerator.ts b/src/reportgenerator.ts index 19bb0b1..6431734 100644 --- a/src/reportgenerator.ts +++ b/src/reportgenerator.ts @@ -2,7 +2,7 @@ import * as core from '@actions/core'; import * as exec from '@actions/exec'; import * as fs from 'fs'; -const VERSION = '4.8.9'; +const VERSION = '4.8.10'; async function run() { try { @@ -30,7 +30,7 @@ async function run() { core.info("- name: Setup .NET Core"); core.info(" uses: actions/setup-dotnet@v1"); core.info(" with"); - core.info(" dotnet-version: '5.0.300'"); + core.info(" dotnet-version: '5.0.301'"); return; }