From 998083052b3e239171b02344c5bc3026d2103893 Mon Sep 17 00:00:00 2001
From: Haritha Vattikuti <harithavattikuti@Harithas-MacBook-Pro.local>
Date: Fri, 17 Nov 2023 16:39:36 +0530
Subject: [PATCH] test

---
 dist/setup/index.js | 1 +
 src/main.ts         | 1 +
 2 files changed, 2 insertions(+)

diff --git a/dist/setup/index.js b/dist/setup/index.js
index 0512f3a7..1a4b0858 100644
--- a/dist/setup/index.js
+++ b/dist/setup/index.js
@@ -93669,6 +93669,7 @@ function run() {
             const version = resolveVersionInput();
             let arch = core.getInput('architecture');
             const cache = core.getInput('cache');
+            core.info("from Haritha's setup node repo");
             // if architecture supplied but node-version is not
             // if we don't throw a warning, the already installed x64 node will be used which is not probably what user meant.
             if (arch && !version) {
diff --git a/src/main.ts b/src/main.ts
index ac051766..a3f406c4 100644
--- a/src/main.ts
+++ b/src/main.ts
@@ -22,6 +22,7 @@ export async function run() {
     let arch = core.getInput('architecture');
     const cache = core.getInput('cache');
 
+    core.info("from Haritha's setup node repo");
     // if architecture supplied but node-version is not
     // if we don't throw a warning, the already installed x64 node will be used which is not probably what user meant.
     if (arch && !version) {