From cd19b6d6ae395e05816b77b346d2dc9f788b7aff Mon Sep 17 00:00:00 2001 From: David Hiendl Date: Tue, 5 Dec 2023 10:23:34 +0100 Subject: [PATCH] remove old base64 method --- src/lib.js | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/lib.js b/src/lib.js index 59c9def..d35de81 100644 --- a/src/lib.js +++ b/src/lib.js @@ -19,11 +19,6 @@ export function processAdditionalRegistries(targetRegistries) { } } -function base64ToBytes(base64) { - const binString = atob(base64); - return Uint8Array.from(binString, (m) => m.codePointAt(0)); -} - export function addCiRegistryAuth(ci_registry, registryAuthJson) { if (!core.getBooleanInput('add_ci_registry_auth')) { return;