lower permissions for chmod (#51)

This commit is contained in:
Oliver King
2022-05-27 17:36:08 -04:00
committed by GitHub
parent 3866693c1e
commit d449d75495
2 changed files with 3 additions and 3 deletions

View File

@@ -57,7 +57,7 @@ export async function downloadKubectl(version: string): Promise<string> {
}
const kubectlPath = path.join(cachedToolpath, kubectlToolName + getExecutableExtension());
fs.chmodSync(kubectlPath, '777');
fs.chmodSync(kubectlPath, '775');
return kubectlPath;
}