From 3c49386747df41bf87d1289c664b407f7ea7dd7f Mon Sep 17 00:00:00 2001 From: Erica Marigold Date: Sat, 30 Nov 2024 18:33:12 +0000 Subject: [PATCH] chore(lune): remove GitHub auth token present in code Whoopsie... FYI it has been revoked now :3 --- .lune/update_tools.luau | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/.lune/update_tools.luau b/.lune/update_tools.luau index 267d87c..fe2e467 100644 --- a/.lune/update_tools.luau +++ b/.lune/update_tools.luau @@ -67,13 +67,7 @@ for _, binSrc in pathfs.readDir(BINS_SRC_DIR) do -- Make sure we have a repo name and version assert(repoName and version, `Failed to get repo name and entrypoint for tool {binSrc}`) - local gh = Github.new( - repoName :: string, - Option.Some({ - authToken = Option.Some("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"), - retries = Option.None, - } :: Github.Config) :: Option - ) + local gh = Github.new(repoName :: string, Option.None :: Option) local transactions = gh:queueTransactions({ "FetchReleases" }) -- Fetch releases, and order them by published date