diff --git a/dist/setup/index.js b/dist/setup/index.js index c3e53647..8292b338 100644 --- a/dist/setup/index.js +++ b/dist/setup/index.js @@ -73691,7 +73691,7 @@ function run() { } if (version) { const token = core.getInput('token'); - const auth = !token || cache_utils_1.isGhes() ? undefined : `token ${token}`; + const auth = !token ? undefined : `token ${token}`; const stable = (core.getInput('stable') || 'true').toUpperCase() === 'TRUE'; const checkLatest = (core.getInput('check-latest') || 'false').toUpperCase() === 'TRUE'; yield installer.getNode(version, stable, checkLatest, auth, arch);