From f5cd3e95a7b313cf3bdb89f78a4dcd3ebec63e44 Mon Sep 17 00:00:00 2001 From: Tom Keller Date: Mon, 25 May 2026 12:14:44 -0700 Subject: [PATCH] Revert "chore: Update dist" This reverts commit f8d4eb68a96ad288bb26a801e2a970b7251f7e62. --- dist/index.js | 6 ------ 1 file changed, 6 deletions(-) diff --git a/dist/index.js b/dist/index.js index bbf26a0..c943d61 100644 --- a/dist/index.js +++ b/dist/index.js @@ -72616,16 +72616,12 @@ var CredentialsClient = class { httpAgent: handler }); } - if (props.stsEndpoint) { - this.stsEndpoint = props.stsEndpoint; - } this.roleChaining = props.roleChaining; } get stsClient() { if (!this._stsClient || this.roleChaining) { const config = { customUserAgent: USER_AGENT }; if (this.region !== void 0) config.region = this.region; - if (this.stsEndpoint !== void 0) config.endpoint = this.stsEndpoint; if (this.requestHandler !== void 0) config.requestHandler = this.requestHandler; this._stsClient = new import_client_sts3.STSClient(config); } @@ -72840,7 +72836,6 @@ async function run() { const expectedAccountIds = getInput("allowed-account-ids", { required: false }).split(",").map((s) => s.trim()); const forceSkipOidc = getBooleanInput("force-skip-oidc", { required: false }); const noProxy = getInput("no-proxy", { required: false }); - const stsEndpoint = getInput("sts-endpoint", { required: false }); const globalTimeout = Number.parseInt(getInput("action-timeout-s", { required: false })) || 0; let timeoutId; if (globalTimeout > 0) { @@ -72883,7 +72878,6 @@ async function run() { }; if (proxyServer) clientProps.proxyServer = proxyServer; if (noProxy) clientProps.noProxy = noProxy; - if (stsEndpoint) clientProps.stsEndpoint = stsEndpoint; const credentialsClient = new CredentialsClient(clientProps); let sourceAccountId; let webIdentityToken;