diff --git a/dist/index.js b/dist/index.js index 57f5086..6e9d4d2 100644 --- a/dist/index.js +++ b/dist/index.js @@ -68,7 +68,7 @@ function run() { } const baseBranch = pullRequest.base.ref; const headBranch = pullRequest.head.ref; - yield (0, exec_1.exec)('npm', ['install', '-g', '@devcycle/cli@5.14.2']); + yield (0, exec_1.exec)('npm', ['install', '-g', '@devcycle/cli@5.14.3']); const prLink = pullRequest === null || pullRequest === void 0 ? void 0 : pullRequest.html_url; const prLinkArgs = prLink ? ['--pr-link', prLink] : []; const authArgs = projectKey && clientId && clientSecret diff --git a/src/action.ts b/src/action.ts index 6ff3072..abd9d0e 100644 --- a/src/action.ts +++ b/src/action.ts @@ -32,7 +32,7 @@ export async function run() { const baseBranch = pullRequest.base.ref const headBranch = pullRequest.head.ref - await exec('npm', ['install', '-g', '@devcycle/cli@5.14.2']) + await exec('npm', ['install', '-g', '@devcycle/cli@5.14.3']) const prLink = pullRequest?.html_url const prLinkArgs = prLink ? ['--pr-link', prLink] : []