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

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
* Update `@actions/core` and prepare 2.0.2 release * Include these changes in the release notes
51 lines
1.1 KiB
JSON
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"
|
|
}
|
|
}
|