3ea79e4318
Bumps the cache-minor-patch group with 7 updates in the /packages/cache directory: | Package | From | To | | --- | --- | --- | | [@actions/core](https://github.com/actions/toolkit/tree/HEAD/packages/core) | `3.0.0` | `3.0.1` | | [@actions/glob](https://github.com/actions/toolkit/tree/HEAD/packages/glob) | `0.6.1` | `0.7.0` | | [@actions/http-client](https://github.com/actions/toolkit/tree/HEAD/packages/http-client) | `4.0.0` | `4.0.1` | | [@azure/core-rest-pipeline](https://github.com/Azure/azure-sdk-for-js) | `1.22.2` | `1.23.0` | | [@azure/storage-blob](https://github.com/Azure/azure-sdk-for-js) | `12.30.0` | `12.31.0` | | [semver](https://github.com/npm/node-semver) | `7.7.3` | `7.7.4` | | [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `25.1.0` | `25.6.0` | Updates `@actions/core` from 3.0.0 to 3.0.1 - [Changelog](https://github.com/actions/toolkit/blob/main/packages/core/RELEASES.md) - [Commits](https://github.com/actions/toolkit/commits/HEAD/packages/core) Updates `@actions/glob` from 0.6.1 to 0.7.0 - [Changelog](https://github.com/actions/toolkit/blob/main/packages/glob/RELEASES.md) - [Commits](https://github.com/actions/toolkit/commits/HEAD/packages/glob) Updates `@actions/http-client` from 4.0.0 to 4.0.1 - [Changelog](https://github.com/actions/toolkit/blob/main/packages/http-client/RELEASES.md) - [Commits](https://github.com/actions/toolkit/commits/HEAD/packages/http-client) Updates `@azure/core-rest-pipeline` from 1.22.2 to 1.23.0 - [Release notes](https://github.com/Azure/azure-sdk-for-js/releases) - [Changelog](https://github.com/Azure/azure-sdk-for-js/blob/main/documentation/Changelog-for-next-generation.md) - [Commits](https://github.com/Azure/azure-sdk-for-js/compare/@azure/core-rest-pipeline_1.22.2...@azure/core-rest-pipeline_1.23.0) Updates `@azure/storage-blob` from 12.30.0 to 12.31.0 - [Release notes](https://github.com/Azure/azure-sdk-for-js/releases) - [Changelog](https://github.com/Azure/azure-sdk-for-js/blob/main/documentation/Changelog-for-next-generation.md) - [Commits](https://github.com/Azure/azure-sdk-for-js/compare/@azure/storage-blob_12.30.0...@azure/storage-blob_12.31.0) Updates `semver` from 7.7.3 to 7.7.4 - [Release notes](https://github.com/npm/node-semver/releases) - [Changelog](https://github.com/npm/node-semver/blob/main/CHANGELOG.md) - [Commits](https://github.com/npm/node-semver/compare/v7.7.3...v7.7.4) Updates `@types/node` from 25.1.0 to 25.6.0 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node) --- updated-dependencies: - dependency-name: "@actions/core" dependency-version: 3.0.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cache-minor-patch - dependency-name: "@actions/glob" dependency-version: 0.7.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: cache-minor-patch - dependency-name: "@actions/http-client" dependency-version: 4.0.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cache-minor-patch - dependency-name: "@azure/core-rest-pipeline" dependency-version: 1.23.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: cache-minor-patch - dependency-name: "@azure/storage-blob" dependency-version: 12.31.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: cache-minor-patch - dependency-name: semver dependency-version: 7.7.4 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cache-minor-patch - dependency-name: "@types/node" dependency-version: 25.6.0 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: cache-minor-patch ... Signed-off-by: dependabot[bot] <support@github.com>
67 lines
1.6 KiB
JSON
67 lines
1.6 KiB
JSON
{
|
|
"name": "@actions/cache",
|
|
"version": "6.0.0",
|
|
"description": "Actions cache lib",
|
|
"keywords": [
|
|
"github",
|
|
"actions",
|
|
"cache"
|
|
],
|
|
"homepage": "https://github.com/actions/toolkit/tree/main/packages/cache",
|
|
"license": "MIT",
|
|
"type": "module",
|
|
"main": "lib/cache.js",
|
|
"types": "lib/cache.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"types": "./lib/cache.d.ts",
|
|
"import": "./lib/cache.js"
|
|
}
|
|
},
|
|
"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 && cp src/internal/shared/package-version.cjs lib/internal/shared/"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/actions/toolkit/issues"
|
|
},
|
|
"dependencies": {
|
|
"@actions/core": "^3.0.0",
|
|
"@actions/exec": "^3.0.0",
|
|
"@actions/glob": "^0.7.0",
|
|
"@actions/http-client": "^4.0.0",
|
|
"@actions/io": "^3.0.0",
|
|
"@azure/core-rest-pipeline": "^1.22.0",
|
|
"@azure/storage-blob": "^12.30.0",
|
|
"@protobuf-ts/runtime-rpc": "^2.11.1",
|
|
"semver": "^7.7.3"
|
|
},
|
|
"devDependencies": {
|
|
"@protobuf-ts/plugin": "^2.9.4",
|
|
"@types/node": "^25.1.0",
|
|
"@types/semver": "^7.7.1",
|
|
"typescript": "^5.2.2"
|
|
},
|
|
"overrides": {
|
|
"uri-js": "npm:uri-js-replace@^1.0.1",
|
|
"node-fetch": "^3.3.2"
|
|
}
|
|
}
|