accessibility-scanner
Version updated for https://github.com/github/accessibility-scanner to version v3.0.0.
This publisher is shown as ‘verified’ by GitHub.
This action is used across all versions by 34 repositories.
Action Type
This is a Composite action.
Go to the GitHub Marketplace to find the latest changes.
Action Summary
The AI-powered Accessibility Scanner is a GitHub Action designed to identify and address accessibility issues in websites, repositories, and dynamic content. It automates the detection of accessibility barriers, creates actionable GitHub issues, and utilizes GitHub Copilot to suggest AI-powered fixes that can be reviewed before implementation. This tool streamlines the process of improving digital accessibility and ensures teams can efficiently track and resolve accessibility gaps in their products.
What’s Changed
What’s Changed
[!IMPORTANT] Reference the Accessibility Scanner action using:
uses: github/accessibility-scanner@v3See the README for further details and examples.
BREAKING CHANGES
[!WARNING] The Find action’s
findingsoutput was replaced withfindings_filein v3.0.0. If you use thefindingsoutput, please migrate to the newfindings_fileoutput.The File action’s
findingsandcached_filingsinputs were replaced withfindings_fileandcached_filings_file. Thefilingsoutput was replaced withfilings_filein v3.0.0. If you use those inputs or outputs, please migrate to the new file action’s inputs/output.The Fix action’s
issuesinput was replaced withissues_file. Thefixingsoutput was replaced withfixings_filein v3.0.0. If you use that input or output, please migrate to the new fix action’s input/output.
Writing to and reading from file content instead of directly passing a findings string (which can be a large JSON object) prevents maximium system argument size errors.
- Replace github-script with file-based approach to avoid large JSON output max limit by @lindseywild in https://github.com/github/accessibility-scanner/pull/177
- Replace JSON string I/O with file-based approach in find, file, fix actions by @lindseywild in https://github.com/github/accessibility-scanner/pull/179
Full Changelog: https://github.com/github/accessibility-scanner/compare/v2.12.0...v3.0.0