Skip to content

Commit

Permalink
Update dependency simple-git to v3.17.0 (#59)
Browse files Browse the repository at this point in the history
* Update dependency simple-git to v3.17.0

* Update dist

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: sqbot <[email protected]>
  • Loading branch information
renovate[bot] and sqbot authored Mar 6, 2023
1 parent 4983ad9 commit 3384477
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 11 deletions.
8 changes: 5 additions & 3 deletions dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -8055,7 +8055,9 @@ function spawnOptionsPlugin(spawnOptions) {

// src/lib/plugins/timout-plugin.ts
function timeoutPlugin({
block
block,
stdErr = true,
stdOut = true
}) {
if (block > 0) {
return {
Expand All @@ -8079,8 +8081,8 @@ function timeoutPlugin({
stop();
context.kill(new GitPluginError(void 0, "timeout", `block timeout reached`));
}
(_a2 = context.spawned.stdout) == null ? void 0 : _a2.on("data", wait);
(_b = context.spawned.stderr) == null ? void 0 : _b.on("data", wait);
stdOut && ((_a2 = context.spawned.stdout) == null ? void 0 : _a2.on("data", wait));
stdErr && ((_b = context.spawned.stderr) == null ? void 0 : _b.on("data", wait));
context.spawned.on("exit", stop);
context.spawned.on("close", stop);
wait();
Expand Down
14 changes: 7 additions & 7 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"dependencies": {
"@actions/core": "1.10.0",
"extract-pr-titles": "1.1.0",
"simple-git": "3.16.1"
"simple-git": "3.17.0"
},
"devDependencies": {
"@vercel/ncc": "0.36.1",
Expand Down

0 comments on commit 3384477

Please sign in to comment.