From a4cdc1091b2f5cb9ec838e6e0d464f3023e9c3c4 Mon Sep 17 00:00:00 2001 From: Gabriel Radureau Date: Sat, 5 Oct 2024 22:52:55 +0200 Subject: [PATCH] remove debug msg --- dist/index.js | 3 --- src/action.js | 2 -- src/auth.js | 1 - 3 files changed, 6 deletions(-) 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;