Skip to content

Commit e9a9354

Browse files
ARCH-2011 - Downgrade reportgeneratortool
1 parent 2f220cb commit e9a9354

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,7 @@ This action does not generate the code coverage reports itself, those must be cr
8989
### 4.9.2 to v5.0.0
9090
9191
- The `toolpath` input was removed since it was underutilized. `v5` and above will check for the presence of the tool in the `./reportgeneratortool` directory, which was the default location in prior versions. If that directory does not exist, the tool will be installed with `v4.8.12`. If desired, a different version of the global tool can be installed in this location prior to this action but different versions of the report generator tool may or may not be compatible with this action's code.
92+
- The `4.8.12` version of the tool is older but will continue to be used to preserve metrics in the generated reports that newer versions no longer produce.
9293
- The following inputs were not utilized and have been removed completely from the action starting with `v5`.
9394
- `sourcedirs`
9495
- `historydir`

dist/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3381,7 +3381,7 @@ var require_exec = __commonJS({
33813381
var core = require_core();
33823382
var exec = require_exec();
33833383
var fs = require('fs');
3384-
var reportGeneratorVersion = '5.2.2';
3384+
var reportGeneratorVersion = '4.8.12';
33853385
async function run() {
33863386
try {
33873387
const verbosity = core.getInput('verbosity').trim();

src/reportgenerator.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ const core = require('@actions/core');
22
const exec = require('@actions/exec');
33
const fs = require('fs');
44

5-
const reportGeneratorVersion = '5.2.2';
5+
const reportGeneratorVersion = '4.8.12';
66

77
async function run() {
88
try {

0 commit comments

Comments
 (0)