Skip to content

Commit 38bf078

Browse files
authored
Merge pull request #118 from mheap/reviewdog-workflow-annotation
2 parents 3f7188c + f09fb90 commit 38bf078

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ inputs:
2222
default: "false"
2323

2424
reporter:
25-
description: "Reporter of reviewdog command [github-pr-check,github-pr-review,github-check]."
25+
description: "Reporter of reviewdog command [github-pr-check,github-pr-review,github-pr-annotations,github-check]."
2626
required: false
27-
default: "github-pr-check"
27+
default: "github-pr-annotations"
2828

2929
fail_on_error:
3030
description: |

lib/input.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ function get(tok, dir) {
6969
yield exec.exec('gem', ['install', 'asciidoctor', '--user-install']);
7070
logIfDebug('`gem install asciidoctor --user-install` complete');
7171
const localVale = yield (0, install_1.installLint)(core.getInput('version'));
72-
const localReviewDog = yield (0, install_1.installReviewDog)("0.15.0", core.getInput('reviewdog_url'));
72+
const localReviewDog = yield (0, install_1.installReviewDog)("0.17.0", core.getInput('reviewdog_url'));
7373
const valeFlags = core.getInput("vale_flags");
7474
let version = '';
7575
yield exec.exec(localVale, ['-v'], {

src/input.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ export async function get(tok: string, dir: string): Promise<Input> {
5858
logIfDebug('`gem install asciidoctor --user-install` complete');
5959

6060
const localVale = await installLint(core.getInput('version'));
61-
const localReviewDog = await installReviewDog("0.15.0", core.getInput('reviewdog_url'));
61+
const localReviewDog = await installReviewDog("0.17.0", core.getInput('reviewdog_url'));
6262
const valeFlags = core.getInput("vale_flags");
6363

6464
let version = '';

0 commit comments

Comments
 (0)