mirror of
https://github.com/extractions/setup-just
synced 2026-09-14 20:13:55 +00:00
Upgrade dependencies
This commit is contained in:
@@ -9,7 +9,7 @@ jobs:
|
|||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
- uses: actions/setup-node@v1
|
- uses: actions/setup-node@v1
|
||||||
with:
|
with:
|
||||||
node-version: '12.x'
|
node-version: '18'
|
||||||
- run: npm ci
|
- run: npm ci
|
||||||
- run: npm run lint
|
- run: npm run lint
|
||||||
- run: npm run build
|
- run: npm run build
|
||||||
|
|||||||
+1
-1
@@ -8,5 +8,5 @@ inputs:
|
|||||||
just-version:
|
just-version:
|
||||||
description: 'A valid semver specifier of the just version to install'
|
description: 'A valid semver specifier of the just version to install'
|
||||||
runs:
|
runs:
|
||||||
using: 'node12'
|
using: 'node16'
|
||||||
main: 'dist/index.js'
|
main: 'dist/index.js'
|
||||||
|
|||||||
Vendored
+2
-2
File diff suppressed because one or more lines are too long
Generated
+1028
-1206
File diff suppressed because it is too large
Load Diff
+12
-12
@@ -4,8 +4,8 @@
|
|||||||
"description": "Install the just command runner",
|
"description": "Install the just command runner",
|
||||||
"main": "dist/index.js",
|
"main": "dist/index.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"fmt": "node node_modules/.bin/prettier --write **/*.ts",
|
"fmt": "prettier --write **/*.ts",
|
||||||
"lint": "node node_modules/.bin/eslint **/*.ts",
|
"lint": "eslint **/*.ts",
|
||||||
"build": "rm -rf dist/ && ncc build src/index.ts --minify",
|
"build": "rm -rf dist/ && ncc build src/index.ts --minify",
|
||||||
"run": "npm run build && RUNNER_TOOL_CACHE=./runner/cache RUNNER_TEMP=./runner/temp node dist/index.js"
|
"run": "npm run build && RUNNER_TOOL_CACHE=./runner/cache RUNNER_TEMP=./runner/temp node dist/index.js"
|
||||||
},
|
},
|
||||||
@@ -20,17 +20,17 @@
|
|||||||
},
|
},
|
||||||
"homepage": "https://github.com/extractions/setup-just#readme",
|
"homepage": "https://github.com/extractions/setup-just#readme",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@actions/core": "^1.2.6",
|
"@actions/core": "^1.9.1",
|
||||||
"@extractions/setup-crate": "^0.2.1"
|
"@extractions/setup-crate": "^0.3.1"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@types/node": "^14.11.6",
|
"@types/node": "^18.7.21",
|
||||||
"@types/semver": "^7.3.4",
|
"@types/semver": "^7.3.12",
|
||||||
"@typescript-eslint/eslint-plugin": "^4.4.0",
|
"@typescript-eslint/eslint-plugin": "^5.38.0",
|
||||||
"@typescript-eslint/parser": "^4.4.0",
|
"@typescript-eslint/parser": "^5.38.0",
|
||||||
"@vercel/ncc": "^0.29.2",
|
"@vercel/ncc": "^0.34.0",
|
||||||
"eslint": "^7.10.0",
|
"eslint": "^8.24.0",
|
||||||
"prettier": "^2.1.2",
|
"prettier": "^2.7.1",
|
||||||
"typescript": "^4.0.3"
|
"typescript": "^4.8.3"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
+3
-1
@@ -12,7 +12,9 @@ async function main() {
|
|||||||
core.addPath(tool.dir);
|
core.addPath(tool.dir);
|
||||||
core.info(`Successfully setup ${tool.name} v${tool.version}`);
|
core.info(`Successfully setup ${tool.name} v${tool.version}`);
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
core.setFailed(err.message);
|
if (err instanceof Error) {
|
||||||
|
core.setFailed(err.message);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user