diff --git a/dist/index.js b/dist/index.js index 458b4b8..06a12a0 100644 --- a/dist/index.js +++ b/dist/index.js @@ -105975,10 +105975,6 @@ async function main() { lib_core.setOutput(Outputs.BufVersion, bufVersion); lib_core.setOutput(Outputs.BufPath, bufPath); lib_core.saveState(Outputs.BufPath, bufPath); - if (inputs.github_actor == "dependabot[bot]") { - lib_core.info("Skipping steps for dependabot"); - return; - } await login(bufPath, inputs); if (inputs.setup_only) { lib_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");