Update source so github/no-then passes
This commit is contained in:
parent
35fd0a93b1
commit
cd727934bf
4 changed files with 40 additions and 16 deletions
|
|
@ -102,7 +102,13 @@ async function run() {
|
||||||
await sendStatusReport(startedAt, stats);
|
await sendStatusReport(startedAt, stats);
|
||||||
}
|
}
|
||||||
|
|
||||||
run().catch((e) => {
|
async function runWrapper() {
|
||||||
core.setFailed(`analyze action failed: ${e}`);
|
try {
|
||||||
console.log(e);
|
await run();
|
||||||
});
|
} catch (error) {
|
||||||
|
core.setFailed(`analyze action failed: ${error}`);
|
||||||
|
console.log(error);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void runWrapper();
|
||||||
|
|
|
||||||
|
|
@ -86,7 +86,13 @@ async function run() {
|
||||||
await sendCompletedStatusReport(startedAt, language ? [language] : []);
|
await sendCompletedStatusReport(startedAt, language ? [language] : []);
|
||||||
}
|
}
|
||||||
|
|
||||||
run().catch((e) => {
|
async function runWrapper() {
|
||||||
core.setFailed(`autobuild action failed. ${e}`);
|
try {
|
||||||
console.log(e);
|
await run();
|
||||||
});
|
} catch (error) {
|
||||||
|
core.setFailed(`autobuild action failed. ${error}`);
|
||||||
|
console.log(error);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void runWrapper();
|
||||||
|
|
|
||||||
|
|
@ -209,7 +209,13 @@ async function run() {
|
||||||
await sendSuccessStatusReport(startedAt, config, toolsVersion);
|
await sendSuccessStatusReport(startedAt, config, toolsVersion);
|
||||||
}
|
}
|
||||||
|
|
||||||
run().catch((e) => {
|
async function runWrapper() {
|
||||||
core.setFailed(`init action failed: ${e}`);
|
try {
|
||||||
console.log(e);
|
await run();
|
||||||
});
|
} catch (error) {
|
||||||
|
core.setFailed(`init action failed: ${error}`);
|
||||||
|
console.log(error);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void runWrapper();
|
||||||
|
|
|
||||||
|
|
@ -76,7 +76,13 @@ async function run() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
run().catch((e) => {
|
async function runWrapper() {
|
||||||
core.setFailed(`codeql/upload-sarif action failed: ${e}`);
|
try {
|
||||||
console.log(e);
|
await run();
|
||||||
});
|
} catch (error) {
|
||||||
|
core.setFailed(`codeql/upload-sarif action failed: ${error}`);
|
||||||
|
console.log(error);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void runWrapper();
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue