Skip to content

Commit

Permalink
update cli again again (#74)
Browse files Browse the repository at this point in the history
  • Loading branch information
ajwootto authored Mar 15, 2024
1 parent 9a2096a commit fc07e3c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/action.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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] : []
Expand Down

0 comments on commit fc07e3c

Please sign in to comment.