mirror of
https://git.mirrors.martin98.com/https://github.com/actions/toolkit
synced 2025-08-22 11:49:05 +08:00

* Added support to check if Artifact cache service is enabled or not. * enablingForGHES * added ACTIONS_CACHE_URL in fixtures * Fix CI * CI fix * changed function name * Function rename * Updated release * added test case * Update RELEASES.md * Lint errors * lint * linting * lint * update name to actions service * Update packages/cache/src/internal/cacheUtils.ts Co-authored-by: Brian Cristante <33549821+brcrista@users.noreply.github.com> * review comments * linting * linting * push to start CI * Update RELEASES.md * remove extra spaces * reverting version update * Revert "reverting version update" This reverts commit af84eba61ef8c119458dc0ce1da85b01d61b9d13. * Update RELEASES.md Co-authored-by: Brian Cristante <33549821+brcrista@users.noreply.github.com>
56 lines
1.3 KiB
JSON
56 lines
1.3 KiB
JSON
{
|
|
"name": "@actions/cache",
|
|
"version": "2.0.0",
|
|
"preview": true,
|
|
"description": "Actions cache lib",
|
|
"keywords": [
|
|
"github",
|
|
"actions",
|
|
"cache"
|
|
],
|
|
"homepage": "https://github.com/actions/toolkit/tree/main/packages/cache",
|
|
"license": "MIT",
|
|
"main": "lib/cache.js",
|
|
"types": "lib/cache.d.ts",
|
|
"directories": {
|
|
"lib": "lib",
|
|
"test": "__tests__"
|
|
},
|
|
"files": [
|
|
"lib",
|
|
"!.DS_Store"
|
|
],
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/actions/toolkit.git",
|
|
"directory": "packages/cache"
|
|
},
|
|
"scripts": {
|
|
"audit-moderate": "npm install && npm audit --json --audit-level=moderate > audit.json",
|
|
"test": "echo \"Error: run tests from root\" && exit 1",
|
|
"tsc": "tsc"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/actions/toolkit/issues"
|
|
},
|
|
"dependencies": {
|
|
"@actions/core": "^1.2.6",
|
|
"@actions/exec": "^1.0.1",
|
|
"@actions/glob": "^0.1.0",
|
|
"@actions/http-client": "^1.0.9",
|
|
"@actions/io": "^1.0.1",
|
|
"@azure/ms-rest-js": "^2.6.0",
|
|
"@azure/storage-blob": "^12.8.0",
|
|
"semver": "^6.1.0",
|
|
"uuid": "^3.3.3"
|
|
},
|
|
"devDependencies": {
|
|
"typescript": "^3.8.3",
|
|
"@types/semver": "^6.0.0",
|
|
"@types/uuid": "^3.4.5"
|
|
}
|
|
}
|