From 9f0699dede51652a4fc3918f16f9847e311de5d1 Mon Sep 17 00:00:00 2001 From: Edward McFarlane Date: Thu, 12 Mar 2026 17:46:14 +0100 Subject: [PATCH] Remove dependabot restriction --- dist/index.js | 4 ---- src/main.ts | 4 ---- 2 files changed, 8 deletions(-) diff --git a/dist/index.js b/dist/index.js index 2a003b9..04b9d61 100644 --- a/dist/index.js +++ b/dist/index.js @@ -48646,10 +48646,6 @@ async function main() { core.setOutput(Outputs.BufVersion, bufVersion); core.setOutput(Outputs.BufPath, bufPath); core.saveState(Outputs.BufPath, bufPath); - if (inputs.github_actor == "dependabot[bot]") { - core.info("Skipping steps for dependabot"); - return; - } await login(bufPath, inputs); if (inputs.setup_only) { core.info("Setup only, skipping steps"); diff --git a/src/main.ts b/src/main.ts index f226c47..04fee68 100644 --- a/src/main.ts +++ b/src/main.ts @@ -63,10 +63,6 @@ async function main() { core.setOutput(Outputs.BufVersion, bufVersion); core.setOutput(Outputs.BufPath, bufPath); core.saveState(Outputs.BufPath, bufPath); - if (inputs.github_actor == "dependabot[bot]") { - core.info("Skipping steps for dependabot"); - return; - } await login(bufPath, inputs); if (inputs.setup_only) { core.info("Setup only, skipping steps");