run prettier

This commit is contained in:
George Adams 2026-02-13 15:51:56 +00:00
parent 78af96c188
commit 107f2fc644
5 changed files with 9 additions and 23 deletions

View file

@ -157,13 +157,7 @@ export async function getGo(
// Try download from internal distribution (popular versions only)
//
try {
info = await getInfoFromManifest(
versionSpec,
true,
auth,
arch,
manifest
);
info = await getInfoFromManifest(versionSpec, true, auth, arch, manifest);
if (info) {
downloadPath = await installGoVersion(info, auth, arch);
} else {
@ -485,9 +479,7 @@ export function getInfoFromDirectDownload(
const fileName = `${goVersion}.${platStr}-${archStr}.${extension}`;
const downloadUrl = `${goDownloadBaseUrl}/${fileName}`;
core.info(
`Constructed direct download URL: ${downloadUrl}`
);
core.info(`Constructed direct download URL: ${downloadUrl}`);
return <IGoVersionInfo>{
type: 'dist',