Skip to content

Commit

Permalink
5.2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
danielpalme committed Mar 14, 2024
1 parent b067e0c commit 7a0988e
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Use the online [configuration tool](https://reportgenerator.io/usage) to get sta
dotnet-quality: 'ga'

- name: ReportGenerator
uses: danielpalme/ReportGenerator-GitHub-Action@5.2.2
uses: danielpalme/ReportGenerator-GitHub-Action@5.2.3
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 Down
2 changes: 1 addition & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ Object.defineProperty(exports, "__esModule", ({ value: true }));
const core = __importStar(__nccwpck_require__(2186));
const exec = __importStar(__nccwpck_require__(1514));
const fs = __importStar(__nccwpck_require__(7147));
const VERSION = '5.2.2';
const VERSION = '5.2.3';
function run() {
return __awaiter(this, void 0, void 0, function* () {
try {
Expand Down
18 changes: 9 additions & 9 deletions package-lock.json

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

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ReportGenerator",
"version": "5.2.2",
"version": "5.2.3",
"description": "",
"main": "lib/reportgenerator.js",
"scripts": {
Expand All @@ -22,6 +22,6 @@
"devDependencies": {
"@types/node": "^20.9.0",
"@vercel/ncc": "^0.38.1",
"typescript": "^5.2.2"
"typescript": "^5.2.3"
}
}
2 changes: 1 addition & 1 deletion 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.2.2';
const VERSION = '5.2.3';

async function run() {
try {
Expand Down

0 comments on commit 7a0988e

Please sign in to comment.