Skip to content

Commit 7c0b336

Browse files
Bump typescript from 5.4.2 to 5.8.3 (#538)
* Bump typescript from 5.4.2 to 5.7.3 Bumps [typescript](https://github.com/microsoft/TypeScript) from 5.4.2 to 5.7.3. - [Release notes](https://github.com/microsoft/TypeScript/releases) - [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release.yml) - [Commits](microsoft/TypeScript@v5.4.2...v5.7.3) --- updated-dependencies: - dependency-name: typescript dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> * Fix low security alert --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: HarithaVattikuti <[email protected]>
1 parent 6f26dcc commit 7c0b336

File tree

5 files changed

+141
-84
lines changed

5 files changed

+141
-84
lines changed

.licenses/npm/brace-expansion.dep.yml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/cache-save/index.js

Lines changed: 39 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -51577,7 +51577,7 @@ function expand(str, isTop) {
5157751577
var isOptions = m.body.indexOf(',') >= 0;
5157851578
if (!isSequence && !isOptions) {
5157951579
// {a},b}
51580-
if (m.post.match(/,.*\}/)) {
51580+
if (m.post.match(/,(?!,).*\}/)) {
5158151581
str = m.pre + '{' + m.body + escClose + m.post;
5158251582
return expand(str);
5158351583
}
@@ -86631,13 +86631,23 @@ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (
8663186631
}) : function(o, v) {
8663286632
o["default"] = v;
8663386633
});
86634-
var __importStar = (this && this.__importStar) || function (mod) {
86635-
if (mod && mod.__esModule) return mod;
86636-
var result = {};
86637-
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
86638-
__setModuleDefault(result, mod);
86639-
return result;
86640-
};
86634+
var __importStar = (this && this.__importStar) || (function () {
86635+
var ownKeys = function(o) {
86636+
ownKeys = Object.getOwnPropertyNames || function (o) {
86637+
var ar = [];
86638+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
86639+
return ar;
86640+
};
86641+
return ownKeys(o);
86642+
};
86643+
return function (mod) {
86644+
if (mod && mod.__esModule) return mod;
86645+
var result = {};
86646+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
86647+
__setModuleDefault(result, mod);
86648+
return result;
86649+
};
86650+
})();
8664186651
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
8664286652
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
8664386653
return new (P || (P = Promise))(function (resolve, reject) {
@@ -86651,7 +86661,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
8665186661
return (mod && mod.__esModule) ? mod : { "default": mod };
8665286662
};
8665386663
Object.defineProperty(exports, "__esModule", ({ value: true }));
86654-
exports.run = void 0;
86664+
exports.run = run;
8665586665
const core = __importStar(__nccwpck_require__(2186));
8665686666
const cache = __importStar(__nccwpck_require__(7799));
8665786667
const fs_1 = __importDefault(__nccwpck_require__(7147));
@@ -86690,7 +86700,6 @@ function run(earlyExit) {
8669086700
}
8669186701
});
8669286702
}
86693-
exports.run = run;
8669486703
const cachePackages = () => __awaiter(void 0, void 0, void 0, function* () {
8669586704
const packageManager = 'default';
8669686705
const state = core.getState(constants_1.State.CacheMatchedKey);
@@ -86749,13 +86758,23 @@ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (
8674986758
}) : function(o, v) {
8675086759
o["default"] = v;
8675186760
});
86752-
var __importStar = (this && this.__importStar) || function (mod) {
86753-
if (mod && mod.__esModule) return mod;
86754-
var result = {};
86755-
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
86756-
__setModuleDefault(result, mod);
86757-
return result;
86758-
};
86761+
var __importStar = (this && this.__importStar) || (function () {
86762+
var ownKeys = function(o) {
86763+
ownKeys = Object.getOwnPropertyNames || function (o) {
86764+
var ar = [];
86765+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
86766+
return ar;
86767+
};
86768+
return ownKeys(o);
86769+
};
86770+
return function (mod) {
86771+
if (mod && mod.__esModule) return mod;
86772+
var result = {};
86773+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
86774+
__setModuleDefault(result, mod);
86775+
return result;
86776+
};
86777+
})();
8675986778
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
8676086779
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
8676186780
return new (P || (P = Promise))(function (resolve, reject) {
@@ -86766,7 +86785,9 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
8676686785
});
8676786786
};
8676886787
Object.defineProperty(exports, "__esModule", ({ value: true }));
86769-
exports.isCacheFeatureAvailable = exports.isGhes = exports.getCacheDirectoryPath = exports.getPackageManagerInfo = exports.getCommandOutput = void 0;
86788+
exports.getCacheDirectoryPath = exports.getPackageManagerInfo = exports.getCommandOutput = void 0;
86789+
exports.isGhes = isGhes;
86790+
exports.isCacheFeatureAvailable = isCacheFeatureAvailable;
8677086791
const cache = __importStar(__nccwpck_require__(7799));
8677186792
const core = __importStar(__nccwpck_require__(2186));
8677286793
const exec = __importStar(__nccwpck_require__(1514));
@@ -86816,7 +86837,6 @@ function isGhes() {
8681686837
const isLocalHost = hostname.endsWith('.LOCALHOST');
8681786838
return !isGitHubHost && !isGitHubEnterpriseCloudHost && !isLocalHost;
8681886839
}
86819-
exports.isGhes = isGhes;
8682086840
function isCacheFeatureAvailable() {
8682186841
if (cache.isFeatureAvailable()) {
8682286842
return true;
@@ -86828,7 +86848,6 @@ function isCacheFeatureAvailable() {
8682886848
core.warning('The runner was not able to contact the cache service. Caching will be skipped');
8682986849
return false;
8683086850
}
86831-
exports.isCacheFeatureAvailable = isCacheFeatureAvailable;
8683286851

8683386852

8683486853
/***/ }),

0 commit comments

Comments
 (0)