diff --git a/dist/index.js b/dist/index.js index c4a3e20..93ca3f2 100644 --- a/dist/index.js +++ b/dist/index.js @@ -24722,7 +24722,7 @@ class Action { const name = inputs.name || "World"; this.logger.info(`Hello ${name}`); await this.sleep(3000); - this.logger.info("Change: 8"); + this.logger.info("Change: 9"); this.logger.info("Finished github-action-nodejs-template"); } sleep(milliseconds) { diff --git a/src/action.ts b/src/action.ts index b400d76..deb6e2d 100644 --- a/src/action.ts +++ b/src/action.ts @@ -13,7 +13,7 @@ export class Action { const name = inputs.name || "World"; this.logger.info(`Hello ${name}`); await this.sleep(3000); - this.logger.info("Change: 8"); + this.logger.info("Change: 9"); this.logger.info("Finished github-action-nodejs-template"); }