Skip to content

Commit

Permalink
fix: update execa to 9.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
aminya committed Sep 20, 2024
1 parent be3c5a5 commit 654b790
Show file tree
Hide file tree
Showing 14 changed files with 31 additions and 151 deletions.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/legacy/setup-cpp.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/legacy/setup-cpp.js.map

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/modern/setup-cpp.mjs

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/modern/setup-cpp.mjs.map

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -211,6 +211,9 @@
"pnpm": {
"patchedDependencies": {
"@actions/[email protected]": "patches/@[email protected]"
},
"overrides": {
"execa": "9.4.0"
}
}
}
2 changes: 1 addition & 1 deletion packages/exec-powershell/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"prepublishOnly": "pnpm run build"
},
"dependencies": {
"execa": "^7",
"execa": "^9.4.0",
"which": "^4.0.0",
"@types/node": "^14"
},
Expand Down
4 changes: 2 additions & 2 deletions packages/exec-powershell/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export function execPowershell(
command: string,
startupFlags: string[] = ["-NoProfile", "-NoLogo", "-NonInteractive"],
execOptions: execa.Options = { stdio: "inherit" },
): execa.ExecaChildProcess<string> {
): execa.ResultPromise<execa.Options> {
return execa.execa(getPowerShell(), [...startupFlags, "-c", command], execOptions)
}

Expand All @@ -36,7 +36,7 @@ export function execPowershellSync(
command: string,
startupFlags: string[] = ["-NoProfile", "-NoLogo", "-NonInteractive"],
execOptions: execa.SyncOptions = { stdio: "inherit" },
): execa.ExecaSyncReturnValue<string> {
): execa.SyncResult<execa.SyncOptions> {
return execa.execaSync(getPowerShell(), [...startupFlags, "-c", command], execOptions)
}

Expand Down
2 changes: 1 addition & 1 deletion packages/setup-apt/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"ci-log": "workspace:*",
"envosman": "workspace:*",
"which": "4.0.0",
"execa": "^7.2.0",
"execa": "^9.4.0",
"escape-string-regexp": "^5.0.0",
"node-downloader-helper": "2.1.9",
"memoizee": "^0.4.17"
Expand Down
2 changes: 1 addition & 1 deletion packages/setup-brew/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"ci-log": "workspace:*",
"envosman": "workspace:*",
"which": "4.0.0",
"execa": "^7.2.0",
"execa": "^9.4.0",
"setup-apt": "workspace:*",
"node-downloader-helper": "2.1.9"
},
Expand Down
149 changes: 13 additions & 136 deletions pnpm-lock.yaml

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

0 comments on commit 654b790

Please sign in to comment.