Skip to content

Commit 95dcf96

Browse files
[bot] Update dist directory
1 parent 2e3238a commit 95dcf96

8 files changed

Lines changed: 11 additions & 18 deletions

File tree

dist/dependency-submission/main/index.js

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -159037,7 +159037,6 @@ const core = __importStar(__nccwpck_require__(37484));
159037159037
const github = __importStar(__nccwpck_require__(93228));
159038159038
const glob = __importStar(__nccwpck_require__(47206));
159039159039
const artifact_1 = __nccwpck_require__(76846);
159040-
const request_error_1 = __nccwpck_require__(93708);
159041159040
const path = __importStar(__nccwpck_require__(16928));
159042159041
const fs_1 = __importDefault(__nccwpck_require__(79896));
159043159042
const errors_1 = __nccwpck_require__(83916);
@@ -159199,7 +159198,7 @@ async function submitDependencyGraphs(dependencyGraphFiles) {
159199159198
await submitDependencyGraphFile(dependencyGraphFile);
159200159199
}
159201159200
catch (error) {
159202-
if (error instanceof request_error_1.RequestError) {
159201+
if (error instanceof Error && error.name === 'HttpError') {
159203159202
error.message = translateErrorMessage(dependencyGraphFile, error);
159204159203
}
159205159204
throw error;
@@ -160211,7 +160210,6 @@ exports.generateJobSummary = generateJobSummary;
160211160210
exports.renderSummaryTable = renderSummaryTable;
160212160211
const core = __importStar(__nccwpck_require__(37484));
160213160212
const github = __importStar(__nccwpck_require__(93228));
160214-
const request_error_1 = __nccwpck_require__(93708);
160215160213
const configuration_1 = __nccwpck_require__(66081);
160216160214
const deprecation_collector_1 = __nccwpck_require__(18391);
160217160215
async function generateJobSummary(buildResults, cachingReport, config) {
@@ -160264,7 +160262,7 @@ ${jobSummary}`;
160264160262
});
160265160263
}
160266160264
catch (error) {
160267-
if (error instanceof request_error_1.RequestError) {
160265+
if (error instanceof Error && error.name === 'HttpError') {
160268160266
core.warning(buildWarningMessage(error));
160269160267
}
160270160268
else {

dist/dependency-submission/main/index.js.map

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/dependency-submission/post/index.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -120670,7 +120670,6 @@ exports.generateJobSummary = generateJobSummary;
120670120670
exports.renderSummaryTable = renderSummaryTable;
120671120671
const core = __importStar(__nccwpck_require__(37484));
120672120672
const github = __importStar(__nccwpck_require__(93228));
120673-
const request_error_1 = __nccwpck_require__(93708);
120674120673
const configuration_1 = __nccwpck_require__(66081);
120675120674
const deprecation_collector_1 = __nccwpck_require__(18391);
120676120675
async function generateJobSummary(buildResults, cachingReport, config) {
@@ -120723,7 +120722,7 @@ ${jobSummary}`;
120723120722
});
120724120723
}
120725120724
catch (error) {
120726-
if (error instanceof request_error_1.RequestError) {
120725+
if (error instanceof Error && error.name === 'HttpError') {
120727120726
core.warning(buildWarningMessage(error));
120728120727
}
120729120728
else {

dist/dependency-submission/post/index.js.map

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/setup-gradle/main/index.js

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -159022,7 +159022,6 @@ const core = __importStar(__nccwpck_require__(37484));
159022159022
const github = __importStar(__nccwpck_require__(93228));
159023159023
const glob = __importStar(__nccwpck_require__(47206));
159024159024
const artifact_1 = __nccwpck_require__(76846);
159025-
const request_error_1 = __nccwpck_require__(93708);
159026159025
const path = __importStar(__nccwpck_require__(16928));
159027159026
const fs_1 = __importDefault(__nccwpck_require__(79896));
159028159027
const errors_1 = __nccwpck_require__(83916);
@@ -159184,7 +159183,7 @@ async function submitDependencyGraphs(dependencyGraphFiles) {
159184159183
await submitDependencyGraphFile(dependencyGraphFile);
159185159184
}
159186159185
catch (error) {
159187-
if (error instanceof request_error_1.RequestError) {
159186+
if (error instanceof Error && error.name === 'HttpError') {
159188159187
error.message = translateErrorMessage(dependencyGraphFile, error);
159189159188
}
159190159189
throw error;
@@ -160196,7 +160195,6 @@ exports.generateJobSummary = generateJobSummary;
160196160195
exports.renderSummaryTable = renderSummaryTable;
160197160196
const core = __importStar(__nccwpck_require__(37484));
160198160197
const github = __importStar(__nccwpck_require__(93228));
160199-
const request_error_1 = __nccwpck_require__(93708);
160200160198
const configuration_1 = __nccwpck_require__(66081);
160201160199
const deprecation_collector_1 = __nccwpck_require__(18391);
160202160200
async function generateJobSummary(buildResults, cachingReport, config) {
@@ -160249,7 +160247,7 @@ ${jobSummary}`;
160249160247
});
160250160248
}
160251160249
catch (error) {
160252-
if (error instanceof request_error_1.RequestError) {
160250+
if (error instanceof Error && error.name === 'HttpError') {
160253160251
core.warning(buildWarningMessage(error));
160254160252
}
160255160253
else {

dist/setup-gradle/main/index.js.map

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/setup-gradle/post/index.js

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -159017,7 +159017,6 @@ const core = __importStar(__nccwpck_require__(37484));
159017159017
const github = __importStar(__nccwpck_require__(93228));
159018159018
const glob = __importStar(__nccwpck_require__(47206));
159019159019
const artifact_1 = __nccwpck_require__(76846);
159020-
const request_error_1 = __nccwpck_require__(93708);
159021159020
const path = __importStar(__nccwpck_require__(16928));
159022159021
const fs_1 = __importDefault(__nccwpck_require__(79896));
159023159022
const errors_1 = __nccwpck_require__(83916);
@@ -159179,7 +159178,7 @@ async function submitDependencyGraphs(dependencyGraphFiles) {
159179159178
await submitDependencyGraphFile(dependencyGraphFile);
159180159179
}
159181159180
catch (error) {
159182-
if (error instanceof request_error_1.RequestError) {
159181+
if (error instanceof Error && error.name === 'HttpError') {
159183159182
error.message = translateErrorMessage(dependencyGraphFile, error);
159184159183
}
159185159184
throw error;
@@ -160191,7 +160190,6 @@ exports.generateJobSummary = generateJobSummary;
160191160190
exports.renderSummaryTable = renderSummaryTable;
160192160191
const core = __importStar(__nccwpck_require__(37484));
160193160192
const github = __importStar(__nccwpck_require__(93228));
160194-
const request_error_1 = __nccwpck_require__(93708);
160195160193
const configuration_1 = __nccwpck_require__(66081);
160196160194
const deprecation_collector_1 = __nccwpck_require__(18391);
160197160195
async function generateJobSummary(buildResults, cachingReport, config) {
@@ -160244,7 +160242,7 @@ ${jobSummary}`;
160244160242
});
160245160243
}
160246160244
catch (error) {
160247-
if (error instanceof request_error_1.RequestError) {
160245+
if (error instanceof Error && error.name === 'HttpError') {
160248160246
core.warning(buildWarningMessage(error));
160249160247
}
160250160248
else {

dist/setup-gradle/post/index.js.map

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

0 commit comments

Comments
 (0)