Skip to content

Commit

Permalink
Use newer command syntax (actions/toolkit#110)
Browse files Browse the repository at this point in the history
  • Loading branch information
kimburgess committed Jun 25, 2021
1 parent dc31a0a commit 8340c7c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@ async function run() {

if (Core.getBooleanInput("annotate")) {
const matchersPath = Path.join(__dirname, ".github");
Core.info(`##[add-matcher]${Path.join(matchersPath, "crystal.json")}`);
Core.info(`##[add-matcher]${Path.join(matchersPath, "crystal-spec.json")}`);
Core.info(`::add-matcher::${Path.join(matchersPath, "crystal.json")}`);
Core.info(`::add-matcher::${Path.join(matchersPath, "crystal-spec.json")}`);
}
} catch (error) {
Core.setFailed(error);
Expand Down

0 comments on commit 8340c7c

Please sign in to comment.