From 122dd47e5fb202216e2bfb04e74905fdf0abdef1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=8E=8B=E4=B8=80=E4=B9=8B?= Date: Tue, 24 Oct 2023 17:31:32 +0800 Subject: [PATCH] =?UTF-8?q?=E5=86=85=E7=BD=91=E6=BA=90?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- dist/setup/index.js | 4 ++-- src/distributions/official_builds/official_builds.ts | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/dist/setup/index.js b/dist/setup/index.js index e6d14d8..4c3ed7a 100644 --- a/dist/setup/index.js +++ b/dist/setup/index.js @@ -94257,7 +94257,7 @@ class OfficialBuilds extends base_distribution_1.default { return `https://nodejs.org/dist`; } getManifest() { - core.debug('Getting manifest from actions/node-versions@main'); + core.info('Getting manifest from actions/node-versions@main'); return this.getManifestFromRepo('actions', 'node-versions', this.nodeInfo.auth, 'main'); } getManifestFromRepo(owner, repo, auth, branch = 'master') { @@ -94339,7 +94339,7 @@ class OfficialBuilds extends base_distribution_1.default { return __awaiter(this, void 0, void 0, function* () { let info = null; if (!manifest) { - core.debug('No manifest cached'); + core.info('No manifest cached'); manifest = yield this.getManifest(); } const rel = yield tc.findFromManifest(versionSpec, stable, manifest, osArch); diff --git a/src/distributions/official_builds/official_builds.ts b/src/distributions/official_builds/official_builds.ts index 3ab31d2..a48e262 100644 --- a/src/distributions/official_builds/official_builds.ts +++ b/src/distributions/official_builds/official_builds.ts @@ -190,7 +190,7 @@ export default class OfficialBuilds extends BaseDistribution { } private getManifest(): Promise { - core.debug('Getting manifest from actions/node-versions@main'); + core.info('Getting manifest from actions/node-versions@main'); return this.getManifestFromRepo( 'actions', 'node-versions', @@ -320,7 +320,7 @@ export default class OfficialBuilds extends BaseDistribution { ): Promise { let info: INodeVersionInfo | null = null; if (!manifest) { - core.debug('No manifest cached'); + core.info('No manifest cached'); manifest = await this.getManifest(); }