mirror of
https://github.com/ditkrg/k8s-set-context.git
synced 2026-01-23 06:16:48 +00:00
* fix: use @actions/core.exportVariable instead of set-env `set-env` is now deprecated. `@actions/core` exposes `exportVariable` to be used instead. https://github.com/actions/toolkit/tree/main/packages/core#exporting-variables * chore: bump @actions/core to v1.2.6
27 lines
610 B
JSON
27 lines
610 B
JSON
{
|
|
"name": "k8s-set-context-action",
|
|
"version": "0.0.0",
|
|
"private": true,
|
|
"main": "lib/run.js",
|
|
"scripts": {
|
|
"build": "tsc --outDir .\\lib\\ --rootDir .\\src\\"
|
|
},
|
|
"keywords": [
|
|
"actions",
|
|
"node",
|
|
"setup"
|
|
],
|
|
"author": "GitHub",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@actions/core": "^1.2.6",
|
|
"@actions/exec": "^1.0.0",
|
|
"@actions/tool-cache": "^1.0.0",
|
|
"js-yaml": "^3.13.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^12.0.4",
|
|
"typescript": "^3.5.2"
|
|
}
|
|
}
|