Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: github/accessibility-scanner
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v2.5.0
Choose a base ref
...
head repository: github/accessibility-scanner
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v2.6.0
Choose a head ref
  • 5 commits
  • 1 file changed
  • 1 contributor

Commits on Dec 4, 2025

  1. Configuration menu
    Copy the full SHA
    bb53456 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    2b51e8f View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    565212b View commit details
    Browse the repository at this point in the history
  4. fix: Avoid "Argument list too long" when setting results output (#79)

    This PR updates the “Set results output” step so data from previous
    steps is directly interpolated into the JS script, rather than passed
    via environment variables. This prevents “Argument list too long” errors
    (and resulting workflow failures).
    
    Under the hood, `actions/github-script` was doing something like this:
    
    ```shell
    FILINGS='/** A huge JSON blob **/' FIXINGS='/** A huge JSON blob **/' node tmp/script.js
    ```
    
    Depending on the size of `FILINGS` and `FIXINGS`, this could exceed a
    system’s `ARG_MAX` (https://www.in-ulm.de/~mascheck/various/argmax/ is a
    good explainer).
    
    After removing the environment variables, the argument list length is
    much shorter, so the error is avoided.
    smockle authored Dec 4, 2025
    Configuration menu
    Copy the full SHA
    db62980 View commit details
    Browse the repository at this point in the history
  5. Prepare v2.6.0 (#80)

    smockle authored Dec 4, 2025
    Configuration menu
    Copy the full SHA
    9a6726b View commit details
    Browse the repository at this point in the history
Loading