in src/utilities.ts [101:113]
export function getDownloadUrl(toolName: string, version: string): string {
const system = os.type()
const systemAndArch = system == 'Linux' ? `${system}_${os.arch()}` : system
if (
!downloadLinks[systemAndArch] ||
!downloadLinks[systemAndArch][toolName]
) {
throw Error('Unknown OS or render engine type')
}
return util.format(downloadLinks[systemAndArch][toolName], version)
}