console res

This commit is contained in:
Apple 2022-03-31 14:54:56 +05:30
parent fa608b2294
commit 8546a7057e
4 changed files with 13 additions and 11 deletions

View File

@ -3278,10 +3278,9 @@ function reserveCache(key, paths, options) {
version,
cacheSize: options === null || options === void 0 ? void 0 : options.cacheSize
};
const response = yield requestUtils_1.retryHttpClientResponse('reserveCache', () => __awaiter(this, void 0, void 0, function* () {
return httpClient.post(getCacheApiUrl('caches'), JSON.stringify(reserveCacheRequest));
const response = yield requestUtils_1.retryTypedResponse('reserveCache', () => __awaiter(this, void 0, void 0, function* () {
return httpClient.postJson(getCacheApiUrl('caches'), reserveCacheRequest);
}));
console.log("\n\nResponse\n\n");
console.log(response);
return response;
});
@ -51566,7 +51565,9 @@ function retryTypedResponse(name, method, maxAttempts = constants_1.DefaultRetry
return {
statusCode: error.statusCode,
result: null,
headers: {}
headers: {},
message: error.message,
typeKey: error.result
};
}
else {

9
dist/save/index.js vendored
View File

@ -3278,10 +3278,9 @@ function reserveCache(key, paths, options) {
version,
cacheSize: options === null || options === void 0 ? void 0 : options.cacheSize
};
const response = yield requestUtils_1.retryHttpClientResponse('reserveCache', () => __awaiter(this, void 0, void 0, function* () {
return httpClient.post(getCacheApiUrl('caches'), JSON.stringify(reserveCacheRequest));
const response = yield requestUtils_1.retryTypedResponse('reserveCache', () => __awaiter(this, void 0, void 0, function* () {
return httpClient.postJson(getCacheApiUrl('caches'), reserveCacheRequest);
}));
console.log("\n\nResponse\n\n");
console.log(response);
return response;
});
@ -51569,7 +51568,9 @@ function retryTypedResponse(name, method, maxAttempts = constants_1.DefaultRetry
return {
statusCode: error.statusCode,
result: null,
headers: {}
headers: {},
message: error.message,
typeKey: error.result
};
}
else {

4
package-lock.json generated
View File

@ -5,8 +5,8 @@
"requires": true,
"dependencies": {
"@actions/cache": {
"version": "file:actions-cache-2.5.0.tgz",
"integrity": "sha512-Op00dHgPDvY4EJdde8NIAK4JZjzz3uao8ECVsgN1/KAp0SKtEXKPntS+hrNhTLMnZqBqI74+WZlRWqbpDlus/w==",
"version": "file:actions-cache-2.6.0.tgz",
"integrity": "sha512-B4nmafK6ta7svnwFPDTWK+I5M9Yx5ZQeVau0u4viwnmHrFjLg8zYOL1eNEKOGM/7GXkRAN2jiyaXu8jW419BYw==",
"requires": {
"@actions/core": "^1.2.6",
"@actions/exec": "^1.0.1",

View File

@ -23,7 +23,7 @@
"author": "GitHub",
"license": "MIT",
"dependencies": {
"@actions/cache": "file:actions-cache-2.5.0.tgz",
"@actions/cache": "file:actions-cache-2.6.0.tgz",
"@actions/core": "^1.2.6",
"@actions/exec": "^1.1.1",
"@actions/io": "^1.1.2"