mirror of https://github.com/actions/cache.git
Compare commits
1 Commits
ab42b7592c
...
f877e025aa
Author | SHA1 | Date |
---|---|---|
|
f877e025aa |
|
@ -34,10 +34,6 @@ Upgrading to the recommended versions will not break your workflows.
|
||||||
|
|
||||||
Read more about the change & access the migration guide: [reference to the announcement](https://github.com/actions/cache/discussions/1510).
|
Read more about the change & access the migration guide: [reference to the announcement](https://github.com/actions/cache/discussions/1510).
|
||||||
|
|
||||||
### v5
|
|
||||||
|
|
||||||
* Updated to node 24
|
|
||||||
|
|
||||||
### v4
|
### v4
|
||||||
|
|
||||||
* Integrated with the new cache service (v2) APIs.
|
* Integrated with the new cache service (v2) APIs.
|
||||||
|
|
|
@ -25641,182 +25641,6 @@ module.exports = {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/***/ }),
|
|
||||||
|
|
||||||
/***/ 19803:
|
|
||||||
/***/ ((module) => {
|
|
||||||
|
|
||||||
"use strict";
|
|
||||||
|
|
||||||
|
|
||||||
module.exports = (flag, argv = process.argv) => {
|
|
||||||
const prefix = flag.startsWith('-') ? '' : (flag.length === 1 ? '-' : '--');
|
|
||||||
const position = argv.indexOf(prefix + flag);
|
|
||||||
const terminatorPosition = argv.indexOf('--');
|
|
||||||
return position !== -1 && (terminatorPosition === -1 || position < terminatorPosition);
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
/***/ }),
|
|
||||||
|
|
||||||
/***/ 2428:
|
|
||||||
/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => {
|
|
||||||
|
|
||||||
"use strict";
|
|
||||||
|
|
||||||
const os = __nccwpck_require__(70857);
|
|
||||||
const tty = __nccwpck_require__(52018);
|
|
||||||
const hasFlag = __nccwpck_require__(19803);
|
|
||||||
|
|
||||||
const {env} = process;
|
|
||||||
|
|
||||||
let flagForceColor;
|
|
||||||
if (hasFlag('no-color') ||
|
|
||||||
hasFlag('no-colors') ||
|
|
||||||
hasFlag('color=false') ||
|
|
||||||
hasFlag('color=never')) {
|
|
||||||
flagForceColor = 0;
|
|
||||||
} else if (hasFlag('color') ||
|
|
||||||
hasFlag('colors') ||
|
|
||||||
hasFlag('color=true') ||
|
|
||||||
hasFlag('color=always')) {
|
|
||||||
flagForceColor = 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
function envForceColor() {
|
|
||||||
if ('FORCE_COLOR' in env) {
|
|
||||||
if (env.FORCE_COLOR === 'true') {
|
|
||||||
return 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (env.FORCE_COLOR === 'false') {
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
return env.FORCE_COLOR.length === 0 ? 1 : Math.min(Number.parseInt(env.FORCE_COLOR, 10), 3);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
function translateLevel(level) {
|
|
||||||
if (level === 0) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
return {
|
|
||||||
level,
|
|
||||||
hasBasic: true,
|
|
||||||
has256: level >= 2,
|
|
||||||
has16m: level >= 3
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
function supportsColor(haveStream, {streamIsTTY, sniffFlags = true} = {}) {
|
|
||||||
const noFlagForceColor = envForceColor();
|
|
||||||
if (noFlagForceColor !== undefined) {
|
|
||||||
flagForceColor = noFlagForceColor;
|
|
||||||
}
|
|
||||||
|
|
||||||
const forceColor = sniffFlags ? flagForceColor : noFlagForceColor;
|
|
||||||
|
|
||||||
if (forceColor === 0) {
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (sniffFlags) {
|
|
||||||
if (hasFlag('color=16m') ||
|
|
||||||
hasFlag('color=full') ||
|
|
||||||
hasFlag('color=truecolor')) {
|
|
||||||
return 3;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (hasFlag('color=256')) {
|
|
||||||
return 2;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (haveStream && !streamIsTTY && forceColor === undefined) {
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
const min = forceColor || 0;
|
|
||||||
|
|
||||||
if (env.TERM === 'dumb') {
|
|
||||||
return min;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (process.platform === 'win32') {
|
|
||||||
// Windows 10 build 10586 is the first Windows release that supports 256 colors.
|
|
||||||
// Windows 10 build 14931 is the first release that supports 16m/TrueColor.
|
|
||||||
const osRelease = os.release().split('.');
|
|
||||||
if (
|
|
||||||
Number(osRelease[0]) >= 10 &&
|
|
||||||
Number(osRelease[2]) >= 10586
|
|
||||||
) {
|
|
||||||
return Number(osRelease[2]) >= 14931 ? 3 : 2;
|
|
||||||
}
|
|
||||||
|
|
||||||
return 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
if ('CI' in env) {
|
|
||||||
if (['TRAVIS', 'CIRCLECI', 'APPVEYOR', 'GITLAB_CI', 'GITHUB_ACTIONS', 'BUILDKITE', 'DRONE'].some(sign => sign in env) || env.CI_NAME === 'codeship') {
|
|
||||||
return 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
return min;
|
|
||||||
}
|
|
||||||
|
|
||||||
if ('TEAMCITY_VERSION' in env) {
|
|
||||||
return /^(9\.(0*[1-9]\d*)\.|\d{2,}\.)/.test(env.TEAMCITY_VERSION) ? 1 : 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (env.COLORTERM === 'truecolor') {
|
|
||||||
return 3;
|
|
||||||
}
|
|
||||||
|
|
||||||
if ('TERM_PROGRAM' in env) {
|
|
||||||
const version = Number.parseInt((env.TERM_PROGRAM_VERSION || '').split('.')[0], 10);
|
|
||||||
|
|
||||||
switch (env.TERM_PROGRAM) {
|
|
||||||
case 'iTerm.app':
|
|
||||||
return version >= 3 ? 3 : 2;
|
|
||||||
case 'Apple_Terminal':
|
|
||||||
return 2;
|
|
||||||
// No default
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (/-256(color)?$/i.test(env.TERM)) {
|
|
||||||
return 2;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (/^screen|^xterm|^vt100|^vt220|^rxvt|color|ansi|cygwin|linux/i.test(env.TERM)) {
|
|
||||||
return 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
if ('COLORTERM' in env) {
|
|
||||||
return 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
return min;
|
|
||||||
}
|
|
||||||
|
|
||||||
function getSupportLevel(stream, options = {}) {
|
|
||||||
const level = supportsColor(stream, {
|
|
||||||
streamIsTTY: stream && stream.isTTY,
|
|
||||||
...options
|
|
||||||
});
|
|
||||||
|
|
||||||
return translateLevel(level);
|
|
||||||
}
|
|
||||||
|
|
||||||
module.exports = {
|
|
||||||
supportsColor: getSupportLevel,
|
|
||||||
stdout: getSupportLevel({isTTY: tty.isatty(1)}),
|
|
||||||
stderr: getSupportLevel({isTTY: tty.isatty(2)})
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
/***/ }),
|
/***/ }),
|
||||||
|
|
||||||
/***/ 68753:
|
/***/ 68753:
|
||||||
|
@ -39695,7 +39519,7 @@ exports.colors = [6, 2, 3, 4, 5, 1];
|
||||||
try {
|
try {
|
||||||
// Optional dependency (as in, doesn't need to be installed, NOT like optionalDependencies in package.json)
|
// Optional dependency (as in, doesn't need to be installed, NOT like optionalDependencies in package.json)
|
||||||
// eslint-disable-next-line import/no-extraneous-dependencies
|
// eslint-disable-next-line import/no-extraneous-dependencies
|
||||||
const supportsColor = __nccwpck_require__(2428);
|
const supportsColor = __nccwpck_require__(60075);
|
||||||
|
|
||||||
if (supportsColor && (supportsColor.stderr || supportsColor).level >= 2) {
|
if (supportsColor && (supportsColor.stderr || supportsColor).level >= 2) {
|
||||||
exports.colors = [
|
exports.colors = [
|
||||||
|
@ -66426,6 +66250,14 @@ Otherwise please upgrade to GHES version >= 3.5 and If you are also using Github
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/***/ }),
|
||||||
|
|
||||||
|
/***/ 60075:
|
||||||
|
/***/ ((module) => {
|
||||||
|
|
||||||
|
module.exports = eval("require")("supports-color");
|
||||||
|
|
||||||
|
|
||||||
/***/ }),
|
/***/ }),
|
||||||
|
|
||||||
/***/ 42613:
|
/***/ 42613:
|
||||||
|
@ -110928,7 +110760,7 @@ function randomUUID() {
|
||||||
/***/ ((module) => {
|
/***/ ((module) => {
|
||||||
|
|
||||||
"use strict";
|
"use strict";
|
||||||
module.exports = /*#__PURE__*/JSON.parse('{"name":"@actions/cache","version":"5.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.11.1","@actions/exec":"^1.0.1","@actions/glob":"^0.1.0","@protobuf-ts/runtime-rpc":"^2.11.1","@actions/http-client":"^2.1.1","@actions/io":"^1.0.1","@azure/abort-controller":"^1.1.0","@azure/ms-rest-js":"^2.6.0","@azure/storage-blob":"^12.13.0","semver":"^6.3.1"},"devDependencies":{"@types/node":"^24.1.0","@types/semver":"^6.0.0","@protobuf-ts/plugin":"^2.9.4","typescript":"^5.2.2"},"overrides":{"uri-js":"npm:uri-js-replace@^1.0.1","node-fetch":"^3.3.2"}}');
|
module.exports = /*#__PURE__*/JSON.parse('{"name":"@actions/cache","version":"5.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.11.1","@actions/exec":"^1.0.1","@actions/glob":"^0.1.0","@protobuf-ts/runtime-rpc":"^2.11.1","@actions/http-client":"^2.1.1","@actions/io":"^1.0.1","@azure/abort-controller":"^1.1.0","@azure/ms-rest-js":"^2.6.0","@azure/storage-blob":"^12.13.0","semver":"^6.3.1"},"devDependencies":{"@types/node":"^24.1.0","@types/semver":"^6.0.0","@protobuf-ts/plugin":"^2.9.4","typescript":"^5.2.2"},"overrides":{"uri-js":"npm:uri-js-replace@^1.0.1"}}');
|
||||||
|
|
||||||
/***/ })
|
/***/ })
|
||||||
|
|
||||||
|
|
|
@ -25641,182 +25641,6 @@ module.exports = {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/***/ }),
|
|
||||||
|
|
||||||
/***/ 19803:
|
|
||||||
/***/ ((module) => {
|
|
||||||
|
|
||||||
"use strict";
|
|
||||||
|
|
||||||
|
|
||||||
module.exports = (flag, argv = process.argv) => {
|
|
||||||
const prefix = flag.startsWith('-') ? '' : (flag.length === 1 ? '-' : '--');
|
|
||||||
const position = argv.indexOf(prefix + flag);
|
|
||||||
const terminatorPosition = argv.indexOf('--');
|
|
||||||
return position !== -1 && (terminatorPosition === -1 || position < terminatorPosition);
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
/***/ }),
|
|
||||||
|
|
||||||
/***/ 2428:
|
|
||||||
/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => {
|
|
||||||
|
|
||||||
"use strict";
|
|
||||||
|
|
||||||
const os = __nccwpck_require__(70857);
|
|
||||||
const tty = __nccwpck_require__(52018);
|
|
||||||
const hasFlag = __nccwpck_require__(19803);
|
|
||||||
|
|
||||||
const {env} = process;
|
|
||||||
|
|
||||||
let flagForceColor;
|
|
||||||
if (hasFlag('no-color') ||
|
|
||||||
hasFlag('no-colors') ||
|
|
||||||
hasFlag('color=false') ||
|
|
||||||
hasFlag('color=never')) {
|
|
||||||
flagForceColor = 0;
|
|
||||||
} else if (hasFlag('color') ||
|
|
||||||
hasFlag('colors') ||
|
|
||||||
hasFlag('color=true') ||
|
|
||||||
hasFlag('color=always')) {
|
|
||||||
flagForceColor = 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
function envForceColor() {
|
|
||||||
if ('FORCE_COLOR' in env) {
|
|
||||||
if (env.FORCE_COLOR === 'true') {
|
|
||||||
return 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (env.FORCE_COLOR === 'false') {
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
return env.FORCE_COLOR.length === 0 ? 1 : Math.min(Number.parseInt(env.FORCE_COLOR, 10), 3);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
function translateLevel(level) {
|
|
||||||
if (level === 0) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
return {
|
|
||||||
level,
|
|
||||||
hasBasic: true,
|
|
||||||
has256: level >= 2,
|
|
||||||
has16m: level >= 3
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
function supportsColor(haveStream, {streamIsTTY, sniffFlags = true} = {}) {
|
|
||||||
const noFlagForceColor = envForceColor();
|
|
||||||
if (noFlagForceColor !== undefined) {
|
|
||||||
flagForceColor = noFlagForceColor;
|
|
||||||
}
|
|
||||||
|
|
||||||
const forceColor = sniffFlags ? flagForceColor : noFlagForceColor;
|
|
||||||
|
|
||||||
if (forceColor === 0) {
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (sniffFlags) {
|
|
||||||
if (hasFlag('color=16m') ||
|
|
||||||
hasFlag('color=full') ||
|
|
||||||
hasFlag('color=truecolor')) {
|
|
||||||
return 3;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (hasFlag('color=256')) {
|
|
||||||
return 2;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (haveStream && !streamIsTTY && forceColor === undefined) {
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
const min = forceColor || 0;
|
|
||||||
|
|
||||||
if (env.TERM === 'dumb') {
|
|
||||||
return min;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (process.platform === 'win32') {
|
|
||||||
// Windows 10 build 10586 is the first Windows release that supports 256 colors.
|
|
||||||
// Windows 10 build 14931 is the first release that supports 16m/TrueColor.
|
|
||||||
const osRelease = os.release().split('.');
|
|
||||||
if (
|
|
||||||
Number(osRelease[0]) >= 10 &&
|
|
||||||
Number(osRelease[2]) >= 10586
|
|
||||||
) {
|
|
||||||
return Number(osRelease[2]) >= 14931 ? 3 : 2;
|
|
||||||
}
|
|
||||||
|
|
||||||
return 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
if ('CI' in env) {
|
|
||||||
if (['TRAVIS', 'CIRCLECI', 'APPVEYOR', 'GITLAB_CI', 'GITHUB_ACTIONS', 'BUILDKITE', 'DRONE'].some(sign => sign in env) || env.CI_NAME === 'codeship') {
|
|
||||||
return 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
return min;
|
|
||||||
}
|
|
||||||
|
|
||||||
if ('TEAMCITY_VERSION' in env) {
|
|
||||||
return /^(9\.(0*[1-9]\d*)\.|\d{2,}\.)/.test(env.TEAMCITY_VERSION) ? 1 : 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (env.COLORTERM === 'truecolor') {
|
|
||||||
return 3;
|
|
||||||
}
|
|
||||||
|
|
||||||
if ('TERM_PROGRAM' in env) {
|
|
||||||
const version = Number.parseInt((env.TERM_PROGRAM_VERSION || '').split('.')[0], 10);
|
|
||||||
|
|
||||||
switch (env.TERM_PROGRAM) {
|
|
||||||
case 'iTerm.app':
|
|
||||||
return version >= 3 ? 3 : 2;
|
|
||||||
case 'Apple_Terminal':
|
|
||||||
return 2;
|
|
||||||
// No default
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (/-256(color)?$/i.test(env.TERM)) {
|
|
||||||
return 2;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (/^screen|^xterm|^vt100|^vt220|^rxvt|color|ansi|cygwin|linux/i.test(env.TERM)) {
|
|
||||||
return 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
if ('COLORTERM' in env) {
|
|
||||||
return 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
return min;
|
|
||||||
}
|
|
||||||
|
|
||||||
function getSupportLevel(stream, options = {}) {
|
|
||||||
const level = supportsColor(stream, {
|
|
||||||
streamIsTTY: stream && stream.isTTY,
|
|
||||||
...options
|
|
||||||
});
|
|
||||||
|
|
||||||
return translateLevel(level);
|
|
||||||
}
|
|
||||||
|
|
||||||
module.exports = {
|
|
||||||
supportsColor: getSupportLevel,
|
|
||||||
stdout: getSupportLevel({isTTY: tty.isatty(1)}),
|
|
||||||
stderr: getSupportLevel({isTTY: tty.isatty(2)})
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
/***/ }),
|
/***/ }),
|
||||||
|
|
||||||
/***/ 68753:
|
/***/ 68753:
|
||||||
|
@ -39695,7 +39519,7 @@ exports.colors = [6, 2, 3, 4, 5, 1];
|
||||||
try {
|
try {
|
||||||
// Optional dependency (as in, doesn't need to be installed, NOT like optionalDependencies in package.json)
|
// Optional dependency (as in, doesn't need to be installed, NOT like optionalDependencies in package.json)
|
||||||
// eslint-disable-next-line import/no-extraneous-dependencies
|
// eslint-disable-next-line import/no-extraneous-dependencies
|
||||||
const supportsColor = __nccwpck_require__(2428);
|
const supportsColor = __nccwpck_require__(60075);
|
||||||
|
|
||||||
if (supportsColor && (supportsColor.stderr || supportsColor).level >= 2) {
|
if (supportsColor && (supportsColor.stderr || supportsColor).level >= 2) {
|
||||||
exports.colors = [
|
exports.colors = [
|
||||||
|
@ -66426,6 +66250,14 @@ Otherwise please upgrade to GHES version >= 3.5 and If you are also using Github
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/***/ }),
|
||||||
|
|
||||||
|
/***/ 60075:
|
||||||
|
/***/ ((module) => {
|
||||||
|
|
||||||
|
module.exports = eval("require")("supports-color");
|
||||||
|
|
||||||
|
|
||||||
/***/ }),
|
/***/ }),
|
||||||
|
|
||||||
/***/ 42613:
|
/***/ 42613:
|
||||||
|
@ -110928,7 +110760,7 @@ function randomUUID() {
|
||||||
/***/ ((module) => {
|
/***/ ((module) => {
|
||||||
|
|
||||||
"use strict";
|
"use strict";
|
||||||
module.exports = /*#__PURE__*/JSON.parse('{"name":"@actions/cache","version":"5.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.11.1","@actions/exec":"^1.0.1","@actions/glob":"^0.1.0","@protobuf-ts/runtime-rpc":"^2.11.1","@actions/http-client":"^2.1.1","@actions/io":"^1.0.1","@azure/abort-controller":"^1.1.0","@azure/ms-rest-js":"^2.6.0","@azure/storage-blob":"^12.13.0","semver":"^6.3.1"},"devDependencies":{"@types/node":"^24.1.0","@types/semver":"^6.0.0","@protobuf-ts/plugin":"^2.9.4","typescript":"^5.2.2"},"overrides":{"uri-js":"npm:uri-js-replace@^1.0.1","node-fetch":"^3.3.2"}}');
|
module.exports = /*#__PURE__*/JSON.parse('{"name":"@actions/cache","version":"5.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.11.1","@actions/exec":"^1.0.1","@actions/glob":"^0.1.0","@protobuf-ts/runtime-rpc":"^2.11.1","@actions/http-client":"^2.1.1","@actions/io":"^1.0.1","@azure/abort-controller":"^1.1.0","@azure/ms-rest-js":"^2.6.0","@azure/storage-blob":"^12.13.0","semver":"^6.3.1"},"devDependencies":{"@types/node":"^24.1.0","@types/semver":"^6.0.0","@protobuf-ts/plugin":"^2.9.4","typescript":"^5.2.2"},"overrides":{"uri-js":"npm:uri-js-replace@^1.0.1"}}');
|
||||||
|
|
||||||
/***/ })
|
/***/ })
|
||||||
|
|
||||||
|
|
|
@ -25641,182 +25641,6 @@ module.exports = {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/***/ }),
|
|
||||||
|
|
||||||
/***/ 19803:
|
|
||||||
/***/ ((module) => {
|
|
||||||
|
|
||||||
"use strict";
|
|
||||||
|
|
||||||
|
|
||||||
module.exports = (flag, argv = process.argv) => {
|
|
||||||
const prefix = flag.startsWith('-') ? '' : (flag.length === 1 ? '-' : '--');
|
|
||||||
const position = argv.indexOf(prefix + flag);
|
|
||||||
const terminatorPosition = argv.indexOf('--');
|
|
||||||
return position !== -1 && (terminatorPosition === -1 || position < terminatorPosition);
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
/***/ }),
|
|
||||||
|
|
||||||
/***/ 2428:
|
|
||||||
/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => {
|
|
||||||
|
|
||||||
"use strict";
|
|
||||||
|
|
||||||
const os = __nccwpck_require__(70857);
|
|
||||||
const tty = __nccwpck_require__(52018);
|
|
||||||
const hasFlag = __nccwpck_require__(19803);
|
|
||||||
|
|
||||||
const {env} = process;
|
|
||||||
|
|
||||||
let flagForceColor;
|
|
||||||
if (hasFlag('no-color') ||
|
|
||||||
hasFlag('no-colors') ||
|
|
||||||
hasFlag('color=false') ||
|
|
||||||
hasFlag('color=never')) {
|
|
||||||
flagForceColor = 0;
|
|
||||||
} else if (hasFlag('color') ||
|
|
||||||
hasFlag('colors') ||
|
|
||||||
hasFlag('color=true') ||
|
|
||||||
hasFlag('color=always')) {
|
|
||||||
flagForceColor = 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
function envForceColor() {
|
|
||||||
if ('FORCE_COLOR' in env) {
|
|
||||||
if (env.FORCE_COLOR === 'true') {
|
|
||||||
return 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (env.FORCE_COLOR === 'false') {
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
return env.FORCE_COLOR.length === 0 ? 1 : Math.min(Number.parseInt(env.FORCE_COLOR, 10), 3);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
function translateLevel(level) {
|
|
||||||
if (level === 0) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
return {
|
|
||||||
level,
|
|
||||||
hasBasic: true,
|
|
||||||
has256: level >= 2,
|
|
||||||
has16m: level >= 3
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
function supportsColor(haveStream, {streamIsTTY, sniffFlags = true} = {}) {
|
|
||||||
const noFlagForceColor = envForceColor();
|
|
||||||
if (noFlagForceColor !== undefined) {
|
|
||||||
flagForceColor = noFlagForceColor;
|
|
||||||
}
|
|
||||||
|
|
||||||
const forceColor = sniffFlags ? flagForceColor : noFlagForceColor;
|
|
||||||
|
|
||||||
if (forceColor === 0) {
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (sniffFlags) {
|
|
||||||
if (hasFlag('color=16m') ||
|
|
||||||
hasFlag('color=full') ||
|
|
||||||
hasFlag('color=truecolor')) {
|
|
||||||
return 3;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (hasFlag('color=256')) {
|
|
||||||
return 2;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (haveStream && !streamIsTTY && forceColor === undefined) {
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
const min = forceColor || 0;
|
|
||||||
|
|
||||||
if (env.TERM === 'dumb') {
|
|
||||||
return min;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (process.platform === 'win32') {
|
|
||||||
// Windows 10 build 10586 is the first Windows release that supports 256 colors.
|
|
||||||
// Windows 10 build 14931 is the first release that supports 16m/TrueColor.
|
|
||||||
const osRelease = os.release().split('.');
|
|
||||||
if (
|
|
||||||
Number(osRelease[0]) >= 10 &&
|
|
||||||
Number(osRelease[2]) >= 10586
|
|
||||||
) {
|
|
||||||
return Number(osRelease[2]) >= 14931 ? 3 : 2;
|
|
||||||
}
|
|
||||||
|
|
||||||
return 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
if ('CI' in env) {
|
|
||||||
if (['TRAVIS', 'CIRCLECI', 'APPVEYOR', 'GITLAB_CI', 'GITHUB_ACTIONS', 'BUILDKITE', 'DRONE'].some(sign => sign in env) || env.CI_NAME === 'codeship') {
|
|
||||||
return 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
return min;
|
|
||||||
}
|
|
||||||
|
|
||||||
if ('TEAMCITY_VERSION' in env) {
|
|
||||||
return /^(9\.(0*[1-9]\d*)\.|\d{2,}\.)/.test(env.TEAMCITY_VERSION) ? 1 : 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (env.COLORTERM === 'truecolor') {
|
|
||||||
return 3;
|
|
||||||
}
|
|
||||||
|
|
||||||
if ('TERM_PROGRAM' in env) {
|
|
||||||
const version = Number.parseInt((env.TERM_PROGRAM_VERSION || '').split('.')[0], 10);
|
|
||||||
|
|
||||||
switch (env.TERM_PROGRAM) {
|
|
||||||
case 'iTerm.app':
|
|
||||||
return version >= 3 ? 3 : 2;
|
|
||||||
case 'Apple_Terminal':
|
|
||||||
return 2;
|
|
||||||
// No default
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (/-256(color)?$/i.test(env.TERM)) {
|
|
||||||
return 2;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (/^screen|^xterm|^vt100|^vt220|^rxvt|color|ansi|cygwin|linux/i.test(env.TERM)) {
|
|
||||||
return 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
if ('COLORTERM' in env) {
|
|
||||||
return 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
return min;
|
|
||||||
}
|
|
||||||
|
|
||||||
function getSupportLevel(stream, options = {}) {
|
|
||||||
const level = supportsColor(stream, {
|
|
||||||
streamIsTTY: stream && stream.isTTY,
|
|
||||||
...options
|
|
||||||
});
|
|
||||||
|
|
||||||
return translateLevel(level);
|
|
||||||
}
|
|
||||||
|
|
||||||
module.exports = {
|
|
||||||
supportsColor: getSupportLevel,
|
|
||||||
stdout: getSupportLevel({isTTY: tty.isatty(1)}),
|
|
||||||
stderr: getSupportLevel({isTTY: tty.isatty(2)})
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
/***/ }),
|
/***/ }),
|
||||||
|
|
||||||
/***/ 68753:
|
/***/ 68753:
|
||||||
|
@ -39695,7 +39519,7 @@ exports.colors = [6, 2, 3, 4, 5, 1];
|
||||||
try {
|
try {
|
||||||
// Optional dependency (as in, doesn't need to be installed, NOT like optionalDependencies in package.json)
|
// Optional dependency (as in, doesn't need to be installed, NOT like optionalDependencies in package.json)
|
||||||
// eslint-disable-next-line import/no-extraneous-dependencies
|
// eslint-disable-next-line import/no-extraneous-dependencies
|
||||||
const supportsColor = __nccwpck_require__(2428);
|
const supportsColor = __nccwpck_require__(60075);
|
||||||
|
|
||||||
if (supportsColor && (supportsColor.stderr || supportsColor).level >= 2) {
|
if (supportsColor && (supportsColor.stderr || supportsColor).level >= 2) {
|
||||||
exports.colors = [
|
exports.colors = [
|
||||||
|
@ -66439,6 +66263,14 @@ Otherwise please upgrade to GHES version >= 3.5 and If you are also using Github
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/***/ }),
|
||||||
|
|
||||||
|
/***/ 60075:
|
||||||
|
/***/ ((module) => {
|
||||||
|
|
||||||
|
module.exports = eval("require")("supports-color");
|
||||||
|
|
||||||
|
|
||||||
/***/ }),
|
/***/ }),
|
||||||
|
|
||||||
/***/ 42613:
|
/***/ 42613:
|
||||||
|
@ -110941,7 +110773,7 @@ function randomUUID() {
|
||||||
/***/ ((module) => {
|
/***/ ((module) => {
|
||||||
|
|
||||||
"use strict";
|
"use strict";
|
||||||
module.exports = /*#__PURE__*/JSON.parse('{"name":"@actions/cache","version":"5.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.11.1","@actions/exec":"^1.0.1","@actions/glob":"^0.1.0","@protobuf-ts/runtime-rpc":"^2.11.1","@actions/http-client":"^2.1.1","@actions/io":"^1.0.1","@azure/abort-controller":"^1.1.0","@azure/ms-rest-js":"^2.6.0","@azure/storage-blob":"^12.13.0","semver":"^6.3.1"},"devDependencies":{"@types/node":"^24.1.0","@types/semver":"^6.0.0","@protobuf-ts/plugin":"^2.9.4","typescript":"^5.2.2"},"overrides":{"uri-js":"npm:uri-js-replace@^1.0.1","node-fetch":"^3.3.2"}}');
|
module.exports = /*#__PURE__*/JSON.parse('{"name":"@actions/cache","version":"5.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.11.1","@actions/exec":"^1.0.1","@actions/glob":"^0.1.0","@protobuf-ts/runtime-rpc":"^2.11.1","@actions/http-client":"^2.1.1","@actions/io":"^1.0.1","@azure/abort-controller":"^1.1.0","@azure/ms-rest-js":"^2.6.0","@azure/storage-blob":"^12.13.0","semver":"^6.3.1"},"devDependencies":{"@types/node":"^24.1.0","@types/semver":"^6.0.0","@protobuf-ts/plugin":"^2.9.4","typescript":"^5.2.2"},"overrides":{"uri-js":"npm:uri-js-replace@^1.0.1"}}');
|
||||||
|
|
||||||
/***/ })
|
/***/ })
|
||||||
|
|
||||||
|
|
|
@ -25641,182 +25641,6 @@ module.exports = {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/***/ }),
|
|
||||||
|
|
||||||
/***/ 19803:
|
|
||||||
/***/ ((module) => {
|
|
||||||
|
|
||||||
"use strict";
|
|
||||||
|
|
||||||
|
|
||||||
module.exports = (flag, argv = process.argv) => {
|
|
||||||
const prefix = flag.startsWith('-') ? '' : (flag.length === 1 ? '-' : '--');
|
|
||||||
const position = argv.indexOf(prefix + flag);
|
|
||||||
const terminatorPosition = argv.indexOf('--');
|
|
||||||
return position !== -1 && (terminatorPosition === -1 || position < terminatorPosition);
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
/***/ }),
|
|
||||||
|
|
||||||
/***/ 2428:
|
|
||||||
/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => {
|
|
||||||
|
|
||||||
"use strict";
|
|
||||||
|
|
||||||
const os = __nccwpck_require__(70857);
|
|
||||||
const tty = __nccwpck_require__(52018);
|
|
||||||
const hasFlag = __nccwpck_require__(19803);
|
|
||||||
|
|
||||||
const {env} = process;
|
|
||||||
|
|
||||||
let flagForceColor;
|
|
||||||
if (hasFlag('no-color') ||
|
|
||||||
hasFlag('no-colors') ||
|
|
||||||
hasFlag('color=false') ||
|
|
||||||
hasFlag('color=never')) {
|
|
||||||
flagForceColor = 0;
|
|
||||||
} else if (hasFlag('color') ||
|
|
||||||
hasFlag('colors') ||
|
|
||||||
hasFlag('color=true') ||
|
|
||||||
hasFlag('color=always')) {
|
|
||||||
flagForceColor = 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
function envForceColor() {
|
|
||||||
if ('FORCE_COLOR' in env) {
|
|
||||||
if (env.FORCE_COLOR === 'true') {
|
|
||||||
return 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (env.FORCE_COLOR === 'false') {
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
return env.FORCE_COLOR.length === 0 ? 1 : Math.min(Number.parseInt(env.FORCE_COLOR, 10), 3);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
function translateLevel(level) {
|
|
||||||
if (level === 0) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
return {
|
|
||||||
level,
|
|
||||||
hasBasic: true,
|
|
||||||
has256: level >= 2,
|
|
||||||
has16m: level >= 3
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
function supportsColor(haveStream, {streamIsTTY, sniffFlags = true} = {}) {
|
|
||||||
const noFlagForceColor = envForceColor();
|
|
||||||
if (noFlagForceColor !== undefined) {
|
|
||||||
flagForceColor = noFlagForceColor;
|
|
||||||
}
|
|
||||||
|
|
||||||
const forceColor = sniffFlags ? flagForceColor : noFlagForceColor;
|
|
||||||
|
|
||||||
if (forceColor === 0) {
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (sniffFlags) {
|
|
||||||
if (hasFlag('color=16m') ||
|
|
||||||
hasFlag('color=full') ||
|
|
||||||
hasFlag('color=truecolor')) {
|
|
||||||
return 3;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (hasFlag('color=256')) {
|
|
||||||
return 2;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (haveStream && !streamIsTTY && forceColor === undefined) {
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
const min = forceColor || 0;
|
|
||||||
|
|
||||||
if (env.TERM === 'dumb') {
|
|
||||||
return min;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (process.platform === 'win32') {
|
|
||||||
// Windows 10 build 10586 is the first Windows release that supports 256 colors.
|
|
||||||
// Windows 10 build 14931 is the first release that supports 16m/TrueColor.
|
|
||||||
const osRelease = os.release().split('.');
|
|
||||||
if (
|
|
||||||
Number(osRelease[0]) >= 10 &&
|
|
||||||
Number(osRelease[2]) >= 10586
|
|
||||||
) {
|
|
||||||
return Number(osRelease[2]) >= 14931 ? 3 : 2;
|
|
||||||
}
|
|
||||||
|
|
||||||
return 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
if ('CI' in env) {
|
|
||||||
if (['TRAVIS', 'CIRCLECI', 'APPVEYOR', 'GITLAB_CI', 'GITHUB_ACTIONS', 'BUILDKITE', 'DRONE'].some(sign => sign in env) || env.CI_NAME === 'codeship') {
|
|
||||||
return 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
return min;
|
|
||||||
}
|
|
||||||
|
|
||||||
if ('TEAMCITY_VERSION' in env) {
|
|
||||||
return /^(9\.(0*[1-9]\d*)\.|\d{2,}\.)/.test(env.TEAMCITY_VERSION) ? 1 : 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (env.COLORTERM === 'truecolor') {
|
|
||||||
return 3;
|
|
||||||
}
|
|
||||||
|
|
||||||
if ('TERM_PROGRAM' in env) {
|
|
||||||
const version = Number.parseInt((env.TERM_PROGRAM_VERSION || '').split('.')[0], 10);
|
|
||||||
|
|
||||||
switch (env.TERM_PROGRAM) {
|
|
||||||
case 'iTerm.app':
|
|
||||||
return version >= 3 ? 3 : 2;
|
|
||||||
case 'Apple_Terminal':
|
|
||||||
return 2;
|
|
||||||
// No default
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (/-256(color)?$/i.test(env.TERM)) {
|
|
||||||
return 2;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (/^screen|^xterm|^vt100|^vt220|^rxvt|color|ansi|cygwin|linux/i.test(env.TERM)) {
|
|
||||||
return 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
if ('COLORTERM' in env) {
|
|
||||||
return 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
return min;
|
|
||||||
}
|
|
||||||
|
|
||||||
function getSupportLevel(stream, options = {}) {
|
|
||||||
const level = supportsColor(stream, {
|
|
||||||
streamIsTTY: stream && stream.isTTY,
|
|
||||||
...options
|
|
||||||
});
|
|
||||||
|
|
||||||
return translateLevel(level);
|
|
||||||
}
|
|
||||||
|
|
||||||
module.exports = {
|
|
||||||
supportsColor: getSupportLevel,
|
|
||||||
stdout: getSupportLevel({isTTY: tty.isatty(1)}),
|
|
||||||
stderr: getSupportLevel({isTTY: tty.isatty(2)})
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
/***/ }),
|
/***/ }),
|
||||||
|
|
||||||
/***/ 68753:
|
/***/ 68753:
|
||||||
|
@ -39695,7 +39519,7 @@ exports.colors = [6, 2, 3, 4, 5, 1];
|
||||||
try {
|
try {
|
||||||
// Optional dependency (as in, doesn't need to be installed, NOT like optionalDependencies in package.json)
|
// Optional dependency (as in, doesn't need to be installed, NOT like optionalDependencies in package.json)
|
||||||
// eslint-disable-next-line import/no-extraneous-dependencies
|
// eslint-disable-next-line import/no-extraneous-dependencies
|
||||||
const supportsColor = __nccwpck_require__(2428);
|
const supportsColor = __nccwpck_require__(60075);
|
||||||
|
|
||||||
if (supportsColor && (supportsColor.stderr || supportsColor).level >= 2) {
|
if (supportsColor && (supportsColor.stderr || supportsColor).level >= 2) {
|
||||||
exports.colors = [
|
exports.colors = [
|
||||||
|
@ -66439,6 +66263,14 @@ Otherwise please upgrade to GHES version >= 3.5 and If you are also using Github
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/***/ }),
|
||||||
|
|
||||||
|
/***/ 60075:
|
||||||
|
/***/ ((module) => {
|
||||||
|
|
||||||
|
module.exports = eval("require")("supports-color");
|
||||||
|
|
||||||
|
|
||||||
/***/ }),
|
/***/ }),
|
||||||
|
|
||||||
/***/ 42613:
|
/***/ 42613:
|
||||||
|
@ -110941,7 +110773,7 @@ function randomUUID() {
|
||||||
/***/ ((module) => {
|
/***/ ((module) => {
|
||||||
|
|
||||||
"use strict";
|
"use strict";
|
||||||
module.exports = /*#__PURE__*/JSON.parse('{"name":"@actions/cache","version":"5.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.11.1","@actions/exec":"^1.0.1","@actions/glob":"^0.1.0","@protobuf-ts/runtime-rpc":"^2.11.1","@actions/http-client":"^2.1.1","@actions/io":"^1.0.1","@azure/abort-controller":"^1.1.0","@azure/ms-rest-js":"^2.6.0","@azure/storage-blob":"^12.13.0","semver":"^6.3.1"},"devDependencies":{"@types/node":"^24.1.0","@types/semver":"^6.0.0","@protobuf-ts/plugin":"^2.9.4","typescript":"^5.2.2"},"overrides":{"uri-js":"npm:uri-js-replace@^1.0.1","node-fetch":"^3.3.2"}}');
|
module.exports = /*#__PURE__*/JSON.parse('{"name":"@actions/cache","version":"5.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.11.1","@actions/exec":"^1.0.1","@actions/glob":"^0.1.0","@protobuf-ts/runtime-rpc":"^2.11.1","@actions/http-client":"^2.1.1","@actions/io":"^1.0.1","@azure/abort-controller":"^1.1.0","@azure/ms-rest-js":"^2.6.0","@azure/storage-blob":"^12.13.0","semver":"^6.3.1"},"devDependencies":{"@types/node":"^24.1.0","@types/semver":"^6.0.0","@protobuf-ts/plugin":"^2.9.4","typescript":"^5.2.2"},"overrides":{"uri-js":"npm:uri-js-replace@^1.0.1"}}');
|
||||||
|
|
||||||
/***/ })
|
/***/ })
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue