diff --git a/dist/setup/index.js b/dist/setup/index.js index 2f72b1d..f7bfb08 100644 --- a/dist/setup/index.js +++ b/dist/setup/index.js @@ -102468,7 +102468,7 @@ class MicrosoftDistributions extends base_installer_1.JavaBase { // TODO get these dynamically! // We will need Microsoft to add an endpoint where we can query for versions. const token = core.getInput('token'); - const manifest = (yield this.http.getJson('https://github.com/dmitry-shibanov/setup-java/tree/main', { authorization: token })).result; + const manifest = (yield this.http.getJson('https://github.com/dmitry-shibanov/setup-java/tree/add-json-for-microsoft-versions', { authorization: token })).result; return manifest; }); } diff --git a/src/distributions/microsoft/installer.ts b/src/distributions/microsoft/installer.ts index 7cd96a3..f4d268f 100644 --- a/src/distributions/microsoft/installer.ts +++ b/src/distributions/microsoft/installer.ts @@ -101,7 +101,7 @@ export class MicrosoftDistributions extends JavaBase { const token = core.getInput('token'); const manifest = ( await this.http.getJson( - 'https://github.com/dmitry-shibanov/setup-java/tree/main', + 'https://github.com/dmitry-shibanov/setup-java/tree/add-json-for-microsoft-versions', { authorization: token } ) ).result;