We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8ed7d47 commit 609cc9bCopy full SHA for 609cc9b
src/checks.ts
@@ -1,4 +1,3 @@
1
-import { setFailed } from "@actions/core";
2
import { exec } from "@actions/exec";
3
4
/**
@@ -11,6 +10,6 @@ export async function dependencyChecks(): Promise<void> {
11
10
await exec("git --version");
12
await exec("dotnet --info");
13
} catch (error) {
14
- setFailed(`Action failed with error: "${(error as Error).message}"`);
+ throw error;
15
}
16
0 commit comments