mirror of
https://github.com/dependabot/fetch-metadata.git
synced 2026-03-12 18:07:12 -04:00
Fix new Typescript rules
This commit is contained in:
9
dist/index.js
generated
vendored
9
dist/index.js
generated
vendored
@@ -8956,7 +8956,7 @@ function set(updatedDependencies) {
|
|||||||
const directory = firstDependency === null || firstDependency === void 0 ? void 0 : firstDependency.directory;
|
const directory = firstDependency === null || firstDependency === void 0 ? void 0 : firstDependency.directory;
|
||||||
const ecosystem = firstDependency === null || firstDependency === void 0 ? void 0 : firstDependency.packageEcosystem;
|
const ecosystem = firstDependency === null || firstDependency === void 0 ? void 0 : firstDependency.packageEcosystem;
|
||||||
const target = firstDependency === null || firstDependency === void 0 ? void 0 : firstDependency.targetBranch;
|
const target = firstDependency === null || firstDependency === void 0 ? void 0 : firstDependency.targetBranch;
|
||||||
core.startGroup(`Outputting metadata for ${pluralize_1.default('updated dependency', updatedDependencies.length, true)}`);
|
core.startGroup(`Outputting metadata for ${(0, pluralize_1.default)('updated dependency', updatedDependencies.length, true)}`);
|
||||||
core.info(`outputs.dependency-names: ${dependencyNames}`);
|
core.info(`outputs.dependency-names: ${dependencyNames}`);
|
||||||
core.info(`outputs.dependency-type: ${dependencyType}`);
|
core.info(`outputs.dependency-type: ${dependencyType}`);
|
||||||
core.info(`outputs.update-type: ${updateType}`);
|
core.info(`outputs.update-type: ${updateType}`);
|
||||||
@@ -9231,7 +9231,12 @@ function run() {
|
|||||||
core.setFailed(`Api Error: (${error.status}) ${error.message}`);
|
core.setFailed(`Api Error: (${error.status}) ${error.message}`);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
core.setFailed(error.message);
|
if (error instanceof Error) {
|
||||||
|
core.setFailed(error.message);
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
core.setFailed('There was an unexpected error.');
|
||||||
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -65,7 +65,11 @@ async function check (args: any): Promise<void> {
|
|||||||
process.exit(1)
|
process.exit(1)
|
||||||
}
|
}
|
||||||
} catch (exception) {
|
} catch (exception) {
|
||||||
console.log(exception.message)
|
if (exception instanceof Error) {
|
||||||
|
console.log(exception.message)
|
||||||
|
} else {
|
||||||
|
console.log('There was an unexpected error.')
|
||||||
|
}
|
||||||
process.exit(1)
|
process.exit(1)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -44,7 +44,11 @@ export async function run (): Promise<void> {
|
|||||||
core.setFailed(`Api Error: (${error.status}) ${error.message}`)
|
core.setFailed(`Api Error: (${error.status}) ${error.message}`)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
core.setFailed(error.message)
|
if (error instanceof Error) {
|
||||||
|
core.setFailed(error.message)
|
||||||
|
} else {
|
||||||
|
core.setFailed('There was an unexpected error.')
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user