From 17264f17950980fd60d58572248f02d3224f17b6 Mon Sep 17 00:00:00 2001
From: Aparna Jyothi <aparnajyothi-y@github.com>
Date: Fri, 31 Jan 2025 20:19:08 +0530
Subject: [PATCH] nightly test

---
 dist/setup/index.js                         | 2 +-
 src/distributions/nightly/nightly_builds.ts | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dist/setup/index.js b/dist/setup/index.js
index 0bad9693..b42c3c50 100644
--- a/dist/setup/index.js
+++ b/dist/setup/index.js
@@ -100457,7 +100457,7 @@ class NightlyNodejs extends base_distribution_prerelease_1.default {
         // Check if mirrorUrl exists in the nodeInfo and return it if available
         const mirrorUrl = this.nodeInfo.mirrorURL;
         if (mirrorUrl) {
-            core.info(`Using mirror URL: ${mirrorUrl}`);
+            core.info(`Downloding Using mirror URL: ${mirrorUrl}`);
             return mirrorUrl;
         }
         // Default to the official Node.js nightly distribution URL if no mirror URL is provided
diff --git a/src/distributions/nightly/nightly_builds.ts b/src/distributions/nightly/nightly_builds.ts
index 771c2137..4bc12c9e 100644
--- a/src/distributions/nightly/nightly_builds.ts
+++ b/src/distributions/nightly/nightly_builds.ts
@@ -20,7 +20,7 @@ export default class NightlyNodejs extends BasePrereleaseNodejs {
     // Check if mirrorUrl exists in the nodeInfo and return it if available
     const mirrorUrl = this.nodeInfo.mirrorURL;
     if (mirrorUrl) {
-      core.info(`Using mirror URL: ${mirrorUrl}`);
+      core.info(`Downloding Using mirror URL: ${mirrorUrl}`);
       return mirrorUrl;
     }