Skip to content

Commit 5b3c8ae

Browse files
committed
Release 4.6.2
1 parent 75dac1c commit 5b3c8ae

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
@@ -8,10 +8,10 @@
88
- name: Setup .NET Core # Required to execute ReportGenerator
99
uses: actions/setup-dotnet@v1
1010
with:
11-
dotnet-version: 3.1.300
11+
dotnet-version: 3.1.302
1212

1313
- name: ReportGenerator
14-
uses: danielpalme/[email protected].1
14+
uses: danielpalme/[email protected].2
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.

dist/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -973,7 +973,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
973973
const core = __importStar(__webpack_require__(470));
974974
const exec = __importStar(__webpack_require__(986));
975975
const fs = __importStar(__webpack_require__(747));
976-
const VERSION = '4.6.1';
976+
const VERSION = '4.6.2';
977977
function run() {
978978
return __awaiter(this, void 0, void 0, function* () {
979979
try {

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.6.1",
3+
"version": "4.6.2",
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.6.1';
5+
const VERSION = '4.6.2';
66

77
async function run() {
88
try {
@@ -29,7 +29,7 @@ async function run() {
2929
core.info("- name: Setup .NET Core");
3030
core.info(" uses: actions/setup-dotnet@v1");
3131
core.info(" with");
32-
core.info(" dotnet-version: '3.1.300'");
32+
core.info(" dotnet-version: '3.1.302'");
3333
return;
3434
}
3535

0 commit comments

Comments
 (0)