diff --git a/dist/setup/index.js b/dist/setup/index.js index 43838707..8d35353f 100644 --- a/dist/setup/index.js +++ b/dist/setup/index.js @@ -73330,6 +73330,7 @@ function getNode(versionSpec, stable, checkLatest, auth, arch = os.arch()) { exports.getNode = getNode; function findNightlyVersionInHostedToolcache(versionsSpec, osArch) { const foundAllVersions = tc.findAllVersions('node', osArch); + core.debug(foundAllVersions.join('\n')); const version = evaluateVersions(foundAllVersions, versionsSpec); return version; } diff --git a/src/installer.ts b/src/installer.ts index efa081a7..dab8900f 100644 --- a/src/installer.ts +++ b/src/installer.ts @@ -220,6 +220,7 @@ function findNightlyVersionInHostedToolcache( osArch: string ) { const foundAllVersions = tc.findAllVersions('node', osArch); + core.debug(foundAllVersions.join('\n')); const version = evaluateVersions(foundAllVersions, versionsSpec); return version;