From 61c2704d6e553e5ae15a6f910a4e725e806e6688 Mon Sep 17 00:00:00 2001 From: elliotCamblor Date: Wed, 28 Aug 2024 16:06:40 -0400 Subject: [PATCH] update cli version to latest (#105) --- src/action.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/action.ts b/src/action.ts index e937e53..394279f 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.13']) + await exec('npm', ['install', '-g', '@devcycle/cli@5.16.2']) const prLink = pullRequest?.html_url const prLinkArgs = prLink ? ['--pr-link', prLink] : []