Switch manifest installation from "master" to "main" branch (#65)

* switch from master to main branch

* Update README.md
This commit is contained in:
Maxim Lobanov
2020-07-20 19:50:40 +03:00
committed by GitHub
parent 1616116e1b
commit d0c5defdf3
3 changed files with 9 additions and 2 deletions

View File

@ -140,7 +140,12 @@ export async function getInfoFromManifest(
auth: string | undefined
): Promise<IGoVersionInfo | null> {
let info: IGoVersionInfo | null = null;
const releases = await tc.getManifestFromRepo('actions', 'go-versions', auth);
const releases = await tc.getManifestFromRepo(
'actions',
'go-versions',
auth,
'main'
);
core.info(`matching ${versionSpec}...`);
const rel = await tc.findFromManifest(versionSpec, stable, releases);