Skip to content

Commit

Permalink
Simplify message
Browse files Browse the repository at this point in the history
  • Loading branch information
kachick committed Jun 5, 2024
1 parent 3f9d611 commit 9d768c5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -32654,7 +32654,7 @@ async function run() {
}
writeFileSync(dumpFile, JSON.stringify(dumper, null, 2));
(0, import_core3.setOutput)("dump", dumpFile);
(0, import_core3.info)(colorize("info", `you can read the checks detail in ${dumpFile}`));
(0, import_core3.info)(colorize("info", `Resources are saved in ${dumpFile}`));
}
void run();
/*! Bundled license information:
Expand Down
2 changes: 1 addition & 1 deletion src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ async function run(): Promise<void> {

writeFileSync(dumpFile, JSON.stringify(dumper, null, 2));
setOutput('dump', dumpFile);
info(colorize('info', `you can read the checks detail in ${dumpFile}`));
info(colorize('info', `Resources are saved in ${dumpFile}`));
}

void run();

0 comments on commit 9d768c5

Please sign in to comment.