mirror of
https://github.com/aws-actions/configure-aws-credentials.git
synced 2026-09-04 06:15:07 +09:00
chore: Update dist
This commit is contained in:
+13
-15
@@ -46828,7 +46828,7 @@ var __importStar = (this && this.__importStar) || function (mod) {
|
|||||||
return result;
|
return result;
|
||||||
};
|
};
|
||||||
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
||||||
exports.cleanup = void 0;
|
exports.cleanup = cleanup;
|
||||||
const core = __importStar(__nccwpck_require__(2186));
|
const core = __importStar(__nccwpck_require__(2186));
|
||||||
const helpers_1 = __nccwpck_require__(3015);
|
const helpers_1 = __nccwpck_require__(3015);
|
||||||
/**
|
/**
|
||||||
@@ -46857,7 +46857,6 @@ function cleanup() {
|
|||||||
core.setFailed((0, helpers_1.errorMessage)(error));
|
core.setFailed((0, helpers_1.errorMessage)(error));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
exports.cleanup = cleanup;
|
|
||||||
/* c8 ignore start */
|
/* c8 ignore start */
|
||||||
if (require.main === require.cache[eval('__filename')]) {
|
if (require.main === require.cache[eval('__filename')]) {
|
||||||
try {
|
try {
|
||||||
@@ -46900,7 +46899,18 @@ var __importStar = (this && this.__importStar) || function (mod) {
|
|||||||
return result;
|
return result;
|
||||||
};
|
};
|
||||||
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
||||||
exports.isDefined = exports.errorMessage = exports.retryAndBackoff = exports.verifyKeys = exports.reset = exports.withsleep = exports.defaultSleep = exports.sanitizeGitHubVariables = exports.exportAccountId = exports.exportRegion = exports.unsetCredentials = exports.exportCredentials = void 0;
|
exports.exportCredentials = exportCredentials;
|
||||||
|
exports.unsetCredentials = unsetCredentials;
|
||||||
|
exports.exportRegion = exportRegion;
|
||||||
|
exports.exportAccountId = exportAccountId;
|
||||||
|
exports.sanitizeGitHubVariables = sanitizeGitHubVariables;
|
||||||
|
exports.defaultSleep = defaultSleep;
|
||||||
|
exports.withsleep = withsleep;
|
||||||
|
exports.reset = reset;
|
||||||
|
exports.verifyKeys = verifyKeys;
|
||||||
|
exports.retryAndBackoff = retryAndBackoff;
|
||||||
|
exports.errorMessage = errorMessage;
|
||||||
|
exports.isDefined = isDefined;
|
||||||
const core = __importStar(__nccwpck_require__(2186));
|
const core = __importStar(__nccwpck_require__(2186));
|
||||||
const client_sts_1 = __nccwpck_require__(2209);
|
const client_sts_1 = __nccwpck_require__(2209);
|
||||||
const MAX_TAG_VALUE_LENGTH = 256;
|
const MAX_TAG_VALUE_LENGTH = 256;
|
||||||
@@ -46937,7 +46947,6 @@ function exportCredentials(creds, outputCredentials) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
exports.exportCredentials = exportCredentials;
|
|
||||||
function unsetCredentials() {
|
function unsetCredentials() {
|
||||||
core.exportVariable('AWS_ACCESS_KEY_ID', '');
|
core.exportVariable('AWS_ACCESS_KEY_ID', '');
|
||||||
core.exportVariable('AWS_SECRET_ACCESS_KEY', '');
|
core.exportVariable('AWS_SECRET_ACCESS_KEY', '');
|
||||||
@@ -46945,12 +46954,10 @@ function unsetCredentials() {
|
|||||||
core.exportVariable('AWS_REGION', '');
|
core.exportVariable('AWS_REGION', '');
|
||||||
core.exportVariable('AWS_DEFAULT_REGION', '');
|
core.exportVariable('AWS_DEFAULT_REGION', '');
|
||||||
}
|
}
|
||||||
exports.unsetCredentials = unsetCredentials;
|
|
||||||
function exportRegion(region) {
|
function exportRegion(region) {
|
||||||
core.exportVariable('AWS_DEFAULT_REGION', region);
|
core.exportVariable('AWS_DEFAULT_REGION', region);
|
||||||
core.exportVariable('AWS_REGION', region);
|
core.exportVariable('AWS_REGION', region);
|
||||||
}
|
}
|
||||||
exports.exportRegion = exportRegion;
|
|
||||||
// Obtains account ID from STS Client and sets it as output
|
// Obtains account ID from STS Client and sets it as output
|
||||||
async function exportAccountId(credentialsClient, maskAccountId) {
|
async function exportAccountId(credentialsClient, maskAccountId) {
|
||||||
const client = credentialsClient.stsClient;
|
const client = credentialsClient.stsClient;
|
||||||
@@ -46965,7 +46972,6 @@ async function exportAccountId(credentialsClient, maskAccountId) {
|
|||||||
core.setOutput('aws-account-id', accountId);
|
core.setOutput('aws-account-id', accountId);
|
||||||
return accountId;
|
return accountId;
|
||||||
}
|
}
|
||||||
exports.exportAccountId = exportAccountId;
|
|
||||||
// Tags have a more restrictive set of acceptable characters than GitHub environment variables can.
|
// Tags have a more restrictive set of acceptable characters than GitHub environment variables can.
|
||||||
// This replaces anything not conforming to the tag restrictions by inverting the regular expression.
|
// This replaces anything not conforming to the tag restrictions by inverting the regular expression.
|
||||||
// See the AWS documentation for constraint specifics https://docs.aws.amazon.com/STS/latest/APIReference/API_Tag.html.
|
// See the AWS documentation for constraint specifics https://docs.aws.amazon.com/STS/latest/APIReference/API_Tag.html.
|
||||||
@@ -46974,20 +46980,16 @@ function sanitizeGitHubVariables(name) {
|
|||||||
const nameTruncated = nameWithoutSpecialCharacters.slice(0, MAX_TAG_VALUE_LENGTH);
|
const nameTruncated = nameWithoutSpecialCharacters.slice(0, MAX_TAG_VALUE_LENGTH);
|
||||||
return nameTruncated;
|
return nameTruncated;
|
||||||
}
|
}
|
||||||
exports.sanitizeGitHubVariables = sanitizeGitHubVariables;
|
|
||||||
async function defaultSleep(ms) {
|
async function defaultSleep(ms) {
|
||||||
return new Promise((resolve) => setTimeout(resolve, ms));
|
return new Promise((resolve) => setTimeout(resolve, ms));
|
||||||
}
|
}
|
||||||
exports.defaultSleep = defaultSleep;
|
|
||||||
let sleep = defaultSleep;
|
let sleep = defaultSleep;
|
||||||
function withsleep(s) {
|
function withsleep(s) {
|
||||||
sleep = s;
|
sleep = s;
|
||||||
}
|
}
|
||||||
exports.withsleep = withsleep;
|
|
||||||
function reset() {
|
function reset() {
|
||||||
sleep = defaultSleep;
|
sleep = defaultSleep;
|
||||||
}
|
}
|
||||||
exports.reset = reset;
|
|
||||||
function verifyKeys(creds) {
|
function verifyKeys(creds) {
|
||||||
if (!creds) {
|
if (!creds) {
|
||||||
return false;
|
return false;
|
||||||
@@ -47006,7 +47008,6 @@ function verifyKeys(creds) {
|
|||||||
}
|
}
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
exports.verifyKeys = verifyKeys;
|
|
||||||
// Retries the promise with exponential backoff if the error isRetryable up to maxRetries time.
|
// Retries the promise with exponential backoff if the error isRetryable up to maxRetries time.
|
||||||
async function retryAndBackoff(fn, isRetryable, maxRetries = 12, retries = 0, base = 50) {
|
async function retryAndBackoff(fn, isRetryable, maxRetries = 12, retries = 0, base = 50) {
|
||||||
try {
|
try {
|
||||||
@@ -47025,16 +47026,13 @@ async function retryAndBackoff(fn, isRetryable, maxRetries = 12, retries = 0, ba
|
|||||||
return await retryAndBackoff(fn, isRetryable, maxRetries, retries, base);
|
return await retryAndBackoff(fn, isRetryable, maxRetries, retries, base);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
exports.retryAndBackoff = retryAndBackoff;
|
|
||||||
/* c8 ignore start */
|
/* c8 ignore start */
|
||||||
function errorMessage(error) {
|
function errorMessage(error) {
|
||||||
return error instanceof Error ? error.message : String(error);
|
return error instanceof Error ? error.message : String(error);
|
||||||
}
|
}
|
||||||
exports.errorMessage = errorMessage;
|
|
||||||
function isDefined(i) {
|
function isDefined(i) {
|
||||||
return i !== undefined && i !== null;
|
return i !== undefined && i !== null;
|
||||||
}
|
}
|
||||||
exports.isDefined = isDefined;
|
|
||||||
/* c8 ignore stop */
|
/* c8 ignore stop */
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
+14
-17
@@ -98,7 +98,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|||||||
return (mod && mod.__esModule) ? mod : { "default": mod };
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
||||||
};
|
};
|
||||||
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
||||||
exports.assumeRole = void 0;
|
exports.assumeRole = assumeRole;
|
||||||
const assert_1 = __importDefault(__nccwpck_require__(9491));
|
const assert_1 = __importDefault(__nccwpck_require__(9491));
|
||||||
const fs_1 = __importDefault(__nccwpck_require__(7147));
|
const fs_1 = __importDefault(__nccwpck_require__(7147));
|
||||||
const path_1 = __importDefault(__nccwpck_require__(1017));
|
const path_1 = __importDefault(__nccwpck_require__(1017));
|
||||||
@@ -208,7 +208,6 @@ async function assumeRole(params) {
|
|||||||
return assumeRoleWithCredentials(commonAssumeRoleParams, stsClient);
|
return assumeRoleWithCredentials(commonAssumeRoleParams, stsClient);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
exports.assumeRole = assumeRole;
|
|
||||||
//# sourceMappingURL=assumeRole.js.map
|
//# sourceMappingURL=assumeRole.js.map
|
||||||
|
|
||||||
/***/ }),
|
/***/ }),
|
||||||
@@ -242,7 +241,18 @@ var __importStar = (this && this.__importStar) || function (mod) {
|
|||||||
return result;
|
return result;
|
||||||
};
|
};
|
||||||
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
||||||
exports.isDefined = exports.errorMessage = exports.retryAndBackoff = exports.verifyKeys = exports.reset = exports.withsleep = exports.defaultSleep = exports.sanitizeGitHubVariables = exports.exportAccountId = exports.exportRegion = exports.unsetCredentials = exports.exportCredentials = void 0;
|
exports.exportCredentials = exportCredentials;
|
||||||
|
exports.unsetCredentials = unsetCredentials;
|
||||||
|
exports.exportRegion = exportRegion;
|
||||||
|
exports.exportAccountId = exportAccountId;
|
||||||
|
exports.sanitizeGitHubVariables = sanitizeGitHubVariables;
|
||||||
|
exports.defaultSleep = defaultSleep;
|
||||||
|
exports.withsleep = withsleep;
|
||||||
|
exports.reset = reset;
|
||||||
|
exports.verifyKeys = verifyKeys;
|
||||||
|
exports.retryAndBackoff = retryAndBackoff;
|
||||||
|
exports.errorMessage = errorMessage;
|
||||||
|
exports.isDefined = isDefined;
|
||||||
const core = __importStar(__nccwpck_require__(2186));
|
const core = __importStar(__nccwpck_require__(2186));
|
||||||
const client_sts_1 = __nccwpck_require__(2209);
|
const client_sts_1 = __nccwpck_require__(2209);
|
||||||
const MAX_TAG_VALUE_LENGTH = 256;
|
const MAX_TAG_VALUE_LENGTH = 256;
|
||||||
@@ -279,7 +289,6 @@ function exportCredentials(creds, outputCredentials) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
exports.exportCredentials = exportCredentials;
|
|
||||||
function unsetCredentials() {
|
function unsetCredentials() {
|
||||||
core.exportVariable('AWS_ACCESS_KEY_ID', '');
|
core.exportVariable('AWS_ACCESS_KEY_ID', '');
|
||||||
core.exportVariable('AWS_SECRET_ACCESS_KEY', '');
|
core.exportVariable('AWS_SECRET_ACCESS_KEY', '');
|
||||||
@@ -287,12 +296,10 @@ function unsetCredentials() {
|
|||||||
core.exportVariable('AWS_REGION', '');
|
core.exportVariable('AWS_REGION', '');
|
||||||
core.exportVariable('AWS_DEFAULT_REGION', '');
|
core.exportVariable('AWS_DEFAULT_REGION', '');
|
||||||
}
|
}
|
||||||
exports.unsetCredentials = unsetCredentials;
|
|
||||||
function exportRegion(region) {
|
function exportRegion(region) {
|
||||||
core.exportVariable('AWS_DEFAULT_REGION', region);
|
core.exportVariable('AWS_DEFAULT_REGION', region);
|
||||||
core.exportVariable('AWS_REGION', region);
|
core.exportVariable('AWS_REGION', region);
|
||||||
}
|
}
|
||||||
exports.exportRegion = exportRegion;
|
|
||||||
// Obtains account ID from STS Client and sets it as output
|
// Obtains account ID from STS Client and sets it as output
|
||||||
async function exportAccountId(credentialsClient, maskAccountId) {
|
async function exportAccountId(credentialsClient, maskAccountId) {
|
||||||
const client = credentialsClient.stsClient;
|
const client = credentialsClient.stsClient;
|
||||||
@@ -307,7 +314,6 @@ async function exportAccountId(credentialsClient, maskAccountId) {
|
|||||||
core.setOutput('aws-account-id', accountId);
|
core.setOutput('aws-account-id', accountId);
|
||||||
return accountId;
|
return accountId;
|
||||||
}
|
}
|
||||||
exports.exportAccountId = exportAccountId;
|
|
||||||
// Tags have a more restrictive set of acceptable characters than GitHub environment variables can.
|
// Tags have a more restrictive set of acceptable characters than GitHub environment variables can.
|
||||||
// This replaces anything not conforming to the tag restrictions by inverting the regular expression.
|
// This replaces anything not conforming to the tag restrictions by inverting the regular expression.
|
||||||
// See the AWS documentation for constraint specifics https://docs.aws.amazon.com/STS/latest/APIReference/API_Tag.html.
|
// See the AWS documentation for constraint specifics https://docs.aws.amazon.com/STS/latest/APIReference/API_Tag.html.
|
||||||
@@ -316,20 +322,16 @@ function sanitizeGitHubVariables(name) {
|
|||||||
const nameTruncated = nameWithoutSpecialCharacters.slice(0, MAX_TAG_VALUE_LENGTH);
|
const nameTruncated = nameWithoutSpecialCharacters.slice(0, MAX_TAG_VALUE_LENGTH);
|
||||||
return nameTruncated;
|
return nameTruncated;
|
||||||
}
|
}
|
||||||
exports.sanitizeGitHubVariables = sanitizeGitHubVariables;
|
|
||||||
async function defaultSleep(ms) {
|
async function defaultSleep(ms) {
|
||||||
return new Promise((resolve) => setTimeout(resolve, ms));
|
return new Promise((resolve) => setTimeout(resolve, ms));
|
||||||
}
|
}
|
||||||
exports.defaultSleep = defaultSleep;
|
|
||||||
let sleep = defaultSleep;
|
let sleep = defaultSleep;
|
||||||
function withsleep(s) {
|
function withsleep(s) {
|
||||||
sleep = s;
|
sleep = s;
|
||||||
}
|
}
|
||||||
exports.withsleep = withsleep;
|
|
||||||
function reset() {
|
function reset() {
|
||||||
sleep = defaultSleep;
|
sleep = defaultSleep;
|
||||||
}
|
}
|
||||||
exports.reset = reset;
|
|
||||||
function verifyKeys(creds) {
|
function verifyKeys(creds) {
|
||||||
if (!creds) {
|
if (!creds) {
|
||||||
return false;
|
return false;
|
||||||
@@ -348,7 +350,6 @@ function verifyKeys(creds) {
|
|||||||
}
|
}
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
exports.verifyKeys = verifyKeys;
|
|
||||||
// Retries the promise with exponential backoff if the error isRetryable up to maxRetries time.
|
// Retries the promise with exponential backoff if the error isRetryable up to maxRetries time.
|
||||||
async function retryAndBackoff(fn, isRetryable, maxRetries = 12, retries = 0, base = 50) {
|
async function retryAndBackoff(fn, isRetryable, maxRetries = 12, retries = 0, base = 50) {
|
||||||
try {
|
try {
|
||||||
@@ -367,16 +368,13 @@ async function retryAndBackoff(fn, isRetryable, maxRetries = 12, retries = 0, ba
|
|||||||
return await retryAndBackoff(fn, isRetryable, maxRetries, retries, base);
|
return await retryAndBackoff(fn, isRetryable, maxRetries, retries, base);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
exports.retryAndBackoff = retryAndBackoff;
|
|
||||||
/* c8 ignore start */
|
/* c8 ignore start */
|
||||||
function errorMessage(error) {
|
function errorMessage(error) {
|
||||||
return error instanceof Error ? error.message : String(error);
|
return error instanceof Error ? error.message : String(error);
|
||||||
}
|
}
|
||||||
exports.errorMessage = errorMessage;
|
|
||||||
function isDefined(i) {
|
function isDefined(i) {
|
||||||
return i !== undefined && i !== null;
|
return i !== undefined && i !== null;
|
||||||
}
|
}
|
||||||
exports.isDefined = isDefined;
|
|
||||||
/* c8 ignore stop */
|
/* c8 ignore stop */
|
||||||
//# sourceMappingURL=helpers.js.map
|
//# sourceMappingURL=helpers.js.map
|
||||||
|
|
||||||
@@ -411,7 +409,7 @@ var __importStar = (this && this.__importStar) || function (mod) {
|
|||||||
return result;
|
return result;
|
||||||
};
|
};
|
||||||
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
||||||
exports.run = void 0;
|
exports.run = run;
|
||||||
const core = __importStar(__nccwpck_require__(2186));
|
const core = __importStar(__nccwpck_require__(2186));
|
||||||
const assumeRole_1 = __nccwpck_require__(1209);
|
const assumeRole_1 = __nccwpck_require__(1209);
|
||||||
const CredentialsClient_1 = __nccwpck_require__(3301);
|
const CredentialsClient_1 = __nccwpck_require__(3301);
|
||||||
@@ -575,7 +573,6 @@ async function run() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
exports.run = run;
|
|
||||||
/* c8 ignore start */
|
/* c8 ignore start */
|
||||||
/* istanbul ignore next */
|
/* istanbul ignore next */
|
||||||
if (require.main === require.cache[eval('__filename')]) {
|
if (require.main === require.cache[eval('__filename')]) {
|
||||||
|
|||||||
Reference in New Issue
Block a user