Below you will find pages that utilize the taxonomy term “Flow-Scanner”
January 10, 2026
Lightning Flow Scan
Version updated for https://github.com/Flow-Scanner/lightning-flow-scanner to version v6.16.2.
This action is used across all versions by 0 repositories. Go to the GitHub Marketplace to find the latest changes.
Action Summary The Lightning Flow Scanner is a GitHub Action designed to analyze and optimize Salesforce Flows by detecting anti-patterns, unsafe practices, and potential issues such as queries in loops, hardcoded IDs, and insecure contexts. It automates the identification of common Flow design flaws that could lead to deployment failures, performance issues, or security vulnerabilities.
January 5, 2026
Lightning Flow Scan
Version updated for https://github.com/Flow-Scanner/lightning-flow-scanner to version action-v3.3.1.
This action is used across all versions by 0 repositories. Go to the GitHub Marketplace to find the latest changes.
Action Summary The Lightning Flow Scanner GitHub Action is a tool designed to analyze and optimize Salesforce Flows by detecting potential issues such as unsafe contexts, queries in loops, hardcoded IDs, and other anti-patterns. It helps developers automate the identification of errors and inefficiencies that could lead to runtime failures, security risks, or deployment issues, improving the quality and maintainability of Salesforce Flow implementations.
January 4, 2026
Lightning Flow Scan
Version updated for https://github.com/Flow-Scanner/lightning-flow-scanner to version action-v3.2.1.
This action is used across all versions by 0 repositories. Go to the GitHub Marketplace to find the latest changes.
Action Summary The Lightning Flow Scanner is a GitHub Action that automates the analysis and optimization of Salesforce Flows. It identifies potential issues such as unsafe contexts, queries in loops, hardcoded IDs, and other anti-patterns that could lead to inefficiencies or errors. By providing actionable insights and rule-based recommendations, it helps developers improve the maintainability, portability, and performance of their Salesforce automation processes.
January 2, 2026
Lightning Flow Scan
Version updated for https://github.com/Flow-Scanner/lightning-flow-scanner to version action-v3.1.0.
This action is used across all versions by 0 repositories. Go to the GitHub Marketplace to find the latest changes.
Action Summary The Lightning Flow Scanner is a GitHub Action designed to analyze and optimize Salesforce Flows by detecting potential issues such as unsafe contexts, queries in loops, hardcoded IDs, and other inefficiencies. It automates the identification of common pitfalls that can lead to performance issues or errors, helping developers adhere to best practices and improve the maintainability of their flows.
December 26, 2025
Lightning Flow Scan
Version updated for https://github.com/Flow-Scanner/lightning-flow-scanner to version action-v3.0.0.
This action is used across all versions by 0 repositories. Go to the GitHub Marketplace to find the latest changes.
Action Summary The Lightning Flow Scanner is a GitHub Action designed to analyze and optimize Salesforce Flows by identifying potential issues such as unsafe contexts, inefficient queries, hardcoded IDs, and other problematic patterns. It automates the detection of common errors, enforces best practices, and provides actionable insights to improve Flow performance and maintainability.
December 26, 2025
Lightning Flow Scan
Version updated for https://github.com/Flow-Scanner/lightning-flow-scanner to version action-v2.8.1.
This action is used across all versions by 0 repositories. Go to the GitHub Marketplace to find the latest changes.
Action Summary The Lightning Flow Scanner is a GitHub Action designed to analyze Salesforce Flows for potential issues, such as unsafe contexts, queries inside loops, hardcoded IDs, and other inefficiencies. It automates the detection of common pitfalls and provides actionable insights to optimize Flow performance and maintainability.
December 26, 2025
Lightning Flow Scan
Version updated for https://github.com/Flow-Scanner/lightning-flow-scanner to version action-v2.8.0.
This action is used across all versions by 0 repositories. Go to the GitHub Marketplace to find the latest changes.
Action Summary The Lightning Flow Scanner is a GitHub Action designed to analyze and optimize Salesforce Flows by detecting common issues such as unsafe contexts, queries in loops, hardcoded IDs, and excessive complexity. It automates the identification of potential flaws in Flow design, helping developers ensure best practices and maintain compliance with Apex governor limits.
December 21, 2025
Lightning Flow Scan
Version updated for https://github.com/Flow-Scanner/lightning-flow-scanner to version action-v2.7.0.
This action is used across all versions by 0 repositories. Go to the GitHub Marketplace to find the latest changes.
Action Summary The Lightning Flow Scanner is a GitHub Action designed to analyze and optimize Salesforce Flows by detecting potential issues such as unsafe contexts, queries in loops, hardcoded IDs, and other common pitfalls. It automates the process of identifying inefficiencies and errors in Flow configurations, helping developers ensure best practices and maintainability.
December 13, 2025
Lightning Flow Scan
Version updated for https://github.com/Flow-Scanner/lightning-flow-scanner to version core-v6.10.6.
This action is used across all versions by 0 repositories. Go to the GitHub Marketplace to find the latest changes.
Release notes See Security Advisory “Code Injection via Unsafe Use of new Function() in APIVersion Rule”
December 10, 2025
Lightning Flow Scan
Version updated for https://github.com/Flow-Scanner/lightning-flow-scanner to version action-v2.6.0.
This action is used across all versions by 0 repositories. Go to the GitHub Marketplace to find the latest changes.
Release notes Release Notes Action tag: action-v2.6.0 Core tag: core-v6.10.0 CLI tag: v6.10.0 VSX Version: v2.4.0
New Rule: RecordIdAsString Detects flows using a String variable named recordId as input when they could receive the entire record object instead. Since recent Salesforce releases, record pages and quick actions can pass the complete record, eliminating the need for an additional Get Records query and improving performance.
December 10, 2025
Lightning Flow Scan
Version updated for https://github.com/Flow-Scanner/lightning-flow-scanner to version action-v2.5.0.
This action is used across all versions by 0 repositories. Go to the GitHub Marketplace to find the latest changes.
Release notes Release Notes Action tag: action-v2.5.0 Core tag: core-v6.9.0 CLI tag: v6.9.0 VSX Version: v2.3.0
New Rule: TransformInsteadOfLoop Detects Loop elements that directly connect to Assignment elements—a pattern that can often be replaced with the Transform element for significantly better performance. According to Salesforce documentation, Transform elements are on average 10x more performant than Loop-Assignment combinations as they handle collection manipulation in bulk operations rather than iteratively.
December 9, 2025
Lightning Flow Scan
Version updated for https://github.com/Flow-Scanner/lightning-flow-scanner to version action-v2.4.0.
This action is used across all versions by 0 repositories. Go to the GitHub Marketplace to find the latest changes.
Release notes Release Notes Action tag: action-v2.4.0 Core tag: core-v6.8.0 CLI tag: v6.8.0 VSX Version: v2.2.0
New Rule: MissingFilterRecordTrigger Detects record-triggered flows that lack filters on changed fields or entry conditions, leading to unnecessary executions on every record change. This can degrade system performance, hit governor limits faster, and increase resource consumption in high-volume orgs.
December 8, 2025
Lightning Flow Scan
Version updated for https://github.com/Flow-Scanner/lightning-flow-scanner to version action-v2.3.0.
This action is used across all versions by 0 repositories. Go to the GitHub Marketplace to find the latest changes.
Release notes Enhanced Default Severity Classifications: Adjusted severities to provide more accurate and helpful feedback during scans. This reduces noise from non-critical issues while emphasizing important ones.
Core Tag: core-v6.7.0 CLI Tag: v6.7.0 VSX version: v2.1.0
Error HardcodedId HardcodedUrl FlowDescription MissingMetadataDescription UnsafeRunningContext ActionCallsInLoop SOQLQueryInLoop DMLStatementInLoop FlowName Note TriggerOrder Cyclomatic Complexity Auto-Layout Warning All other rules (by default) View the readme for full details
December 2, 2025
Lightning Flow Scan
Version updated for https://github.com/Flow-Scanner/lightning-flow-scanner to version v2.2.1.
This action is used across all versions by 0 repositories. Go to the GitHub Marketplace to find the latest changes.
Release notes Released: 2 December 2025
This release marks the inclusion of lightning-flow-scanner-action into our unified Turborepo + pnpm monorepo alongside lightning-flow-scanner-core and lightning-flow-scanner-cli at lightning-flow-scanner
Key Benefits Now Realized Single repository for all components – Core, CLI, and Action are now co-located, simplifying versioning and releases.
November 26, 2025
Run Flow Scanner
Version updated for https://github.com/Flow-Scanner/lightning-flow-scanner-action to version v2.1.2.
This action is used across all versions by ? repositories. Go to the GitHub Marketplace to find the latest changes.
Release notes https://github.com/Flow-Scanner/lightning-flow-scanner-core/releases/tag/v6.5.1