chore: Update dist

This commit is contained in:
GitHub Actions
2023-11-22 19:31:12 +00:00
parent e5170cf58c
commit 90cd6b2dfa

18
dist/index.js generated vendored
View File

@@ -202,16 +202,14 @@ async function assumeRole(params) {
// Instantiate STS client
const stsClient = credentialsClient.stsClient;
// Assume role using one of three methods
switch (true) {
case !!webIdentityToken: {
return assumeRoleWithOIDC(commonAssumeRoleParams, stsClient, webIdentityToken);
}
case !!webIdentityTokenFile: {
return assumeRoleWithWebIdentityTokenFile(commonAssumeRoleParams, stsClient, webIdentityTokenFile, GITHUB_WORKSPACE);
}
default: {
return assumeRoleWithCredentials(commonAssumeRoleParams, stsClient);
}
if (!!webIdentityToken) {
return assumeRoleWithOIDC(commonAssumeRoleParams, stsClient, webIdentityToken);
}
else if (!!webIdentityTokenFile) {
return assumeRoleWithWebIdentityTokenFile(commonAssumeRoleParams, stsClient, webIdentityTokenFile, GITHUB_WORKSPACE);
}
else {
return assumeRoleWithCredentials(commonAssumeRoleParams, stsClient);
}
}
exports.assumeRole = assumeRole;