mirror of https://github.com/aminya/setup-cpp
chore: update devDependencies
This commit is contained in:
parent
5692a92fdb
commit
e11034e0a8
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
10
package.json
10
package.json
|
@ -51,7 +51,7 @@
|
|||
},
|
||||
"devDependencies": {
|
||||
"@types/cross-spawn": "^6.0.2",
|
||||
"@types/jest": "^28.1.2",
|
||||
"@types/jest": "^28.1.3",
|
||||
"@types/mri": "^1.1.1",
|
||||
"@types/node": "^18.0.0",
|
||||
"@types/semver": "^7.3.10",
|
||||
|
@ -61,14 +61,14 @@
|
|||
"cross-spawn": "^7.0.3",
|
||||
"cspell": "^6.1.2",
|
||||
"eslint": "^8.18.0",
|
||||
"eslint-config-atomic": "^1.18.0",
|
||||
"eslint-config-atomic": "^1.18.1",
|
||||
"jest": "^28.1.1",
|
||||
"loose-ts-check": "^1.2.0",
|
||||
"npm-check-updates": "^14.0.1",
|
||||
"npm-check-updates": "^14.1.1",
|
||||
"npm-run-all2": "^6.0.1",
|
||||
"parcel": "2.6.1",
|
||||
"parcel": "2.6.2",
|
||||
"prettier": "2.7.1",
|
||||
"prettier-config-atomic": "^3.0.9",
|
||||
"prettier-config-atomic": "^3.0.10",
|
||||
"shx": "0.3.4",
|
||||
"terser-config-atomic": "^0.1.1",
|
||||
"ts-jest": "^28.0.5",
|
||||
|
|
1086
pnpm-lock.yaml
1086
pnpm-lock.yaml
File diff suppressed because it is too large
Load Diff
|
@ -34,10 +34,10 @@ function isPyPyVersion(versionSpec: string) {
|
|||
|
||||
export async function setupActionsPython(version: string, _setupDir: string, arch: string) {
|
||||
if (process.env.AGENT_TOOLSDIRECTORY?.trim()) {
|
||||
debug(`Python is expected to be installed into AGENT_TOOLSDIRECTORY=${process.env["AGENT_TOOLSDIRECTORY"]}`)
|
||||
process.env["RUNNER_TOOL_CACHE"] = process.env["AGENT_TOOLSDIRECTORY"]
|
||||
debug(`Python is expected to be installed into AGENT_TOOLSDIRECTORY=${process.env.AGENT_TOOLSDIRECTORY}`)
|
||||
process.env.RUNNER_TOOL_CACHE = process.env.AGENT_TOOLSDIRECTORY
|
||||
} else {
|
||||
debug(`Python is expected to be installed into RUNNER_TOOL_CACHE==${process.env["RUNNER_TOOL_CACHE"]}`)
|
||||
debug(`Python is expected to be installed into RUNNER_TOOL_CACHE==${process.env.RUNNER_TOOL_CACHE}`)
|
||||
}
|
||||
// const version = resolveVersionInput(versionGiven)
|
||||
if (version) {
|
||||
|
|
Loading…
Reference in New Issue