toolkit/packages/tool-cache/package.json
Josh Gross 1f7c2c79e0
Some checks failed
Code Scanning - Action / CodeQL-Build (push) Failing after 3m6s
toolkit-unit-tests / Build (18.x, ubuntu-latest) (push) Failing after 10m57s
artifact-unit-tests / Upload (ubuntu-latest) (push) Failing after 12m51s
cache-unit-tests / Build (ubuntu-latest) (push) Failing after 40m27s
toolkit-audit / Audit (push) Failing after 42m47s
toolkit-unit-tests / Build (20.x, ubuntu-latest) (push) Failing after 3h14m49s
toolkit-unit-tests / Build (20.x, windows-latest) (push) Has been cancelled
cache-windows-bsd-unit-tests / Build (push) Has been cancelled
toolkit-unit-tests / Build (18.x, windows-latest) (push) Has been cancelled
toolkit-unit-tests / Build (20.x, macos-latest-large) (push) Has been cancelled
artifact-unit-tests / Upload (macos-latest) (push) Has been cancelled
artifact-unit-tests / Upload (windows-latest) (push) Has been cancelled
artifact-unit-tests / Verify and Delete (push) Has been cancelled
cache-unit-tests / Build (macOS-latest) (push) Has been cancelled
cache-unit-tests / Build (windows-latest) (push) Has been cancelled
toolkit-unit-tests / Build (18.x, macos-latest-large) (push) Has been cancelled
[tool-cache] Update @actions/core and prepare 2.0.2 release (#1872)
* Update `@actions/core` and prepare 2.0.2 release

* Include these changes in the release notes
2025-01-15 15:57:09 -05:00

51 lines
1.1 KiB
JSON

{
"name": "@actions/tool-cache",
"version": "2.0.2",
"description": "Actions tool-cache lib",
"keywords": [
"github",
"actions",
"exec"
],
"homepage": "https://github.com/actions/toolkit/tree/main/packages/tool-cache",
"license": "MIT",
"main": "lib/tool-cache.js",
"types": "lib/tool-cache.d.ts",
"directories": {
"lib": "lib",
"test": "__tests__"
},
"files": [
"lib",
"scripts"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/actions/toolkit.git",
"directory": "packages/tool-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.11.1",
"@actions/exec": "^1.0.0",
"@actions/http-client": "^2.0.1",
"@actions/io": "^1.1.1",
"semver": "^6.1.0"
},
"devDependencies": {
"@types/nock": "^11.1.0",
"@types/semver": "^6.0.0",
"nock": "^13.2.9"
}
}