diff --git a/dist/index.js b/dist/index.js index f459282..f9a44bf 100644 --- a/dist/index.js +++ b/dist/index.js @@ -18583,8 +18583,6 @@ async function exportSecrets() { const caCertificateRaw = core.getInput('caCertificate', { required: false }); if (caCertificateRaw != null) { defaultOptions.https.certificateAuthority = Buffer.from(caCertificateRaw, 'base64').toString(); - - core.debug('ℹ cert: \n'+defaultOptions.https.certificateAuthority); } const clientCertificateRaw = core.getInput('clientCertificate', { required: false }); @@ -18887,7 +18885,6 @@ async function getClientToken(client, method, path, payload) { }; core.debug(`Retrieving Vault Token from ${path} endpoint`); - core.debug(`payload: ${JSON.stringify(options)}`); /** @type {import('got').Response} */ let response; diff --git a/src/action.js b/src/action.js index 0ea8cb1..94c8f8e 100644 --- a/src/action.js +++ b/src/action.js @@ -52,8 +52,6 @@ async function exportSecrets() { const caCertificateRaw = core.getInput('caCertificate', { required: false }); if (caCertificateRaw != null) { defaultOptions.https.certificateAuthority = Buffer.from(caCertificateRaw, 'base64').toString(); - - core.debug('ℹ cert: \n'+defaultOptions.https.certificateAuthority); } const clientCertificateRaw = core.getInput('clientCertificate', { required: false }); diff --git a/src/auth.js b/src/auth.js index c02c812..69198d6 100644 --- a/src/auth.js +++ b/src/auth.js @@ -120,7 +120,6 @@ async function getClientToken(client, method, path, payload) { }; core.debug(`Retrieving Vault Token from ${path} endpoint`); - core.debug(`payload: ${JSON.stringify(options)}`); /** @type {import('got').Response} */ let response;