Skip to content

Commit 9d702fc

Browse files
committed
fix: downgrade execa to 7
1 parent 77859ef commit 9d702fc

File tree

15 files changed

+139
-135
lines changed

15 files changed

+139
-135
lines changed

.github/renovate.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"groupName": "devDependencies",
1010
"semanticCommitType": "chore",
1111
"automerge": true,
12-
"ignoreDeps": ["eslint", "numerous"]
12+
"ignoreDeps": ["eslint", "numerous", "execa"]
1313
},
1414
{
1515
"matchDepTypes": ["dependencies"],

dist/legacy/assets/actions_python-DomaW1UO.js renamed to dist/legacy/assets/actions_python-B7InDb2U.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/legacy/assets/actions_python-DomaW1UO.js.map renamed to dist/legacy/assets/actions_python-B7InDb2U.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/legacy/setup-cpp.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/legacy/setup-cpp.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/modern/assets/actions_python-DEBafgEv.mjs renamed to dist/modern/assets/actions_python-Dr1ce8ZD.mjs

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

dist/modern/assets/actions_python-DEBafgEv.mjs.map renamed to dist/modern/assets/actions_python-Dr1ce8ZD.mjs.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/modern/setup-cpp.mjs

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

dist/modern/setup-cpp.mjs.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
"build.vite": "cross-env NODE_ENV=production vite build",
3131
"build.vite.legacy": "cross-env NODE_ENV=production TARGET=legacy vite build",
3232
"build.json": "shx cp ./src/*/*.json ./dist/legacy/ && shx cp ./dist/legacy/*.json ./dist/modern && minijson --file ./dist/**/*.json",
33-
"bump": "ncu -u -x numerous,eslint,@types/eslint && pnpm update && pnpx typesync && pnpm run clean",
33+
"bump": "ncu -u -x execa,numerous,eslint,@types/eslint && pnpm update && pnpx typesync && pnpm run clean",
3434
"clean": "shx rm -rf ./dist ./packages/*/dist ./exe ./.parcel-cache && shx mkdir -p ./dist/legacy ./dist/modern ./dist/modern ",
3535
"dev.vite": "cross-env NODE_ENV=development vite build --watch",
3636
"dev.packages": "turbo dev",
@@ -101,7 +101,7 @@
101101
"eslint": "^8.57.1",
102102
"eslint-config-atomic": "^1.22.1",
103103
"exec-powershell": "workspace:*",
104-
"execa": "^9.4.0",
104+
"execa": "^7",
105105
"is-url-online": "^1.5.0",
106106
"jest": "^29.7.0",
107107
"lefthook": "^1.7.15",
@@ -138,7 +138,6 @@
138138
"turbo": "2.1.2",
139139
"typescript": "^5.6.2",
140140
"ubuntu-version": "^2.0.0",
141-
"unicorn-magic": "^0.3.0",
142141
"untildify-user": "workspace:*",
143142
"util.types": "^0.0.2",
144143
"vite": "^5.4.6",
@@ -214,9 +213,6 @@
214213
"pnpm": {
215214
"patchedDependencies": {
216215
"@actions/http-client@2.2.3": "patches/@actions__http-client@2.2.3.patch"
217-
},
218-
"overrides": {
219-
"execa": "9.4.0"
220216
}
221217
}
222218
}

packages/exec-powershell/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"prepublishOnly": "pnpm run build"
1818
},
1919
"dependencies": {
20-
"execa": "^9.4.0",
20+
"execa": "^7",
2121
"which": "^4.0.0",
2222
"@types/node": "^14"
2323
},

packages/exec-powershell/src/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ export function execPowershell(
1818
command: string,
1919
startupFlags: string[] = ["-NoProfile", "-NoLogo", "-NonInteractive"],
2020
execOptions: execa.Options = { stdio: "inherit" },
21-
): execa.ResultPromise<execa.Options> {
21+
) {
2222
return execa.execa(getPowerShell(), [...startupFlags, "-c", command], execOptions)
2323
}
2424

@@ -36,7 +36,7 @@ export function execPowershellSync(
3636
command: string,
3737
startupFlags: string[] = ["-NoProfile", "-NoLogo", "-NonInteractive"],
3838
execOptions: execa.SyncOptions = { stdio: "inherit" },
39-
): execa.SyncResult<execa.SyncOptions> {
39+
) {
4040
return execa.execaSync(getPowerShell(), [...startupFlags, "-c", command], execOptions)
4141
}
4242

packages/setup-apt/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"ci-log": "workspace:*",
2525
"envosman": "workspace:*",
2626
"which": "4.0.0",
27-
"execa": "^9.4.0",
27+
"execa": "^7",
2828
"escape-string-regexp": "^5.0.0",
2929
"node-downloader-helper": "2.1.9",
3030
"memoizee": "^0.4.17"

packages/setup-brew/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
"ci-log": "workspace:*",
2323
"envosman": "workspace:*",
2424
"which": "4.0.0",
25-
"execa": "^9.4.0",
25+
"execa": "^7",
2626
"setup-apt": "workspace:*",
2727
"node-downloader-helper": "2.1.9"
2828
},

0 commit comments

Comments
 (0)