Fix integer overflow in REPE length validation (out-of-bounds read) (… #1728
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: clang-format | |
| on: | |
| push: | |
| branches: | |
| - main | |
| paths-ignore: | |
| - '**/*.md' | |
| - 'docs/**' | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: DoozyX/clang-format-lint-action@v0.20 | |
| with: | |
| source: '.' | |
| exclude: '' | |
| extensions: 'h,hpp,cpp' | |
| clangFormatVersion: 20 | |
| style: file | |
| inplace: True | |
| - uses: EndBug/add-and-commit@v9 | |
| with: | |
| message: 'Committing clang-format changes' |