From 811ca0679acc8ddfa99d0d07c162d7cb7cdb4a2b Mon Sep 17 00:00:00 2001 From: maxcoulombe Date: Mon, 27 Feb 2023 15:29:58 -0500 Subject: [PATCH] revert breaking change --- dist/index.js | 2 -- src/action.js | 2 -- 2 files changed, 4 deletions(-) diff --git a/dist/index.js b/dist/index.js index d190539..3c4b39f 100644 --- a/dist/index.js +++ b/dist/index.js @@ -18502,8 +18502,6 @@ const AUTH_METHODS = ['approle', 'token', 'github', 'jwt', 'kubernetes']; const ENCODING_TYPES = ['base64', 'hex', 'utf8']; async function exportSecrets() { - throw Error(`OH NO`); - const vaultUrl = core.getInput('url', { required: true }); const vaultNamespace = core.getInput('namespace', { required: false }); const extraHeaders = parseHeadersInput('extraHeaders', { required: false }); diff --git a/src/action.js b/src/action.js index 9fb9d44..b898005 100644 --- a/src/action.js +++ b/src/action.js @@ -9,8 +9,6 @@ const AUTH_METHODS = ['approle', 'token', 'github', 'jwt', 'kubernetes']; const ENCODING_TYPES = ['base64', 'hex', 'utf8']; async function exportSecrets() { - throw Error(`OH NO`); - const vaultUrl = core.getInput('url', { required: true }); const vaultNamespace = core.getInput('namespace', { required: false }); const extraHeaders = parseHeadersInput('extraHeaders', { required: false });