Skip to content

Commit

Permalink
Release 5.1.7
Browse files Browse the repository at this point in the history
  • Loading branch information
danielpalme committed May 15, 2022
1 parent dc606da commit ed6480f
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@
- name: Setup .NET Core # Required to execute ReportGenerator
uses: actions/setup-dotnet@v1
with:
dotnet-version: 6.0.202
dotnet-version: 6.0.300

- name: ReportGenerator
uses: danielpalme/ReportGenerator-GitHub-Action@5.1.6
uses: danielpalme/ReportGenerator-GitHub-Action@5.1.7
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.
Expand All @@ -25,7 +25,7 @@
verbosity: 'Info' # The verbosity level of the log messages. Values: Verbose, Info, Warning, Error, Off
title: '' # Optional title.
tag: '${{ github.run_number }}_${{ github.run_id }}' # Optional tag or build version.
license: '' # Optional license for PRO version. Get your license here: https://danielpalme.github.io/ReportGenerator/pro
license: '' # Optional license for PRO version. Get your license here: https://reportgenerator.io/pro
customSettings: '' # Optional custom settings (separated by semicolon). See: https://github.com/danielpalme/ReportGenerator/wiki/Settings.
toolpath: 'reportgeneratortool' # Default directory for installing the dotnet tool.

Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ inputs:
required: false
default: '${{ github.run_number }}_${{ github.run_id }}'
license:
description: 'Optional license for PRO version. Get your license here: https://danielpalme.github.io/ReportGenerator/pro'
description: 'Optional license for PRO version. Get your license here: https://reportgenerator.io/pro'
required: false
default: ''
customSettings:
Expand Down
4 changes: 2 additions & 2 deletions dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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 = '5.1.6';
const VERSION = '5.1.7';
function run() {
return __awaiter(this, void 0, void 0, function* () {
try {
Expand All @@ -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: '6.0.202'");
core.info(" dotnet-version: '6.0.300'");
return;
}
core.info("Detected .NET Core SDK version '" + output + "'");
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ReportGenerator",
"version": "5.1.6",
"version": "5.1.7",
"description": "",
"main": "lib/reportgenerator.js",
"scripts": {
Expand Down
4 changes: 2 additions & 2 deletions src/reportgenerator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import * as core from '@actions/core';
import * as exec from '@actions/exec';
import * as fs from 'fs';

const VERSION = '5.1.6';
const VERSION = '5.1.7';

async function run() {
try {
Expand Down Expand Up @@ -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: '6.0.202'");
core.info(" dotnet-version: '6.0.300'");
return;
}

Expand Down

0 comments on commit ed6480f

Please sign in to comment.