From 24327359f8649bb465e20dee2b6d8c8cce2c1272 Mon Sep 17 00:00:00 2001 From: Bryan Clark Date: Thu, 28 Nov 2019 12:53:22 -0800 Subject: [PATCH] use server-id instead of ambigous id --- src/setup-java.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/setup-java.ts b/src/setup-java.ts index 39f5466..419b9ea 100644 --- a/src/setup-java.ts +++ b/src/setup-java.ts @@ -18,7 +18,7 @@ async function run() { const matchersPath = path.join(__dirname, '..', '.github'); console.log(`##[add-matcher]${path.join(matchersPath, 'java.json')}`); - const id = core.getInput('id', {required: false}); + const id = core.getInput('server-id', {required: false}); const username = core.getInput('username', {required: false}); const password = core.getInput('password', {required: false});