Use strnlen instead of strlen #355
Workflow file for this run
This file contains 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: Code QA - Autoscan | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- master | |
tags: | |
- '*' | |
paths-ignore: | |
- '.github/**' | |
- '.gitignore' | |
- 'ChangeLog' | |
- 'COPYING' | |
- 'packaging/**' | |
- 'doc/**' | |
- 'install/**' | |
- 'lib/*/IMPORT.defs' | |
- 'lib/*/LICENSE' | |
- 'README.md' | |
pull_request: | |
branches: | |
- master | |
paths-ignore: | |
- '.github/**' | |
- '.gitignore' | |
- 'ChangeLog' | |
- 'COPYING' | |
- 'packaging/**' | |
- 'doc/**' | |
- 'install/**' | |
- 'lib/*/IMPORT.defs' | |
- 'lib/*/LICENSE' | |
- 'README.md' | |
jobs: | |
code-qa-autoscan: | |
name: Scan for configure.ac changes | |
runs-on: ubuntu-20.04 | |
container: ciready/ubuntu:20.04-ci-c | |
steps: | |
### Fetch the code | |
# | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
# Work around the fix for CVE-2022-24765 | |
- run: git config --global --add safe.directory $GITHUB_WORKSPACE || true | |
### Install build environment tools | |
# | |
- run: ./dev-tools/install-dev-software.sh | |
### Run autoscan | |
# | |
- name: Run autoscan, check for changes | |
run: | | |
cp configure.scan configure.scan.GIT | |
./dev-tools/autoscan.sh | |
diff -u configure.scan.GIT configure.scan | |
### If changes are detected, show this help hint | |
# | |
- name: "Failed? Here's what you should do to fix the issue:" | |
if: failure() | |
run: | | |
echo -e "Check the autoscan-related section in this document:\n\n https://github.com/a2o/snoopy/blob/master/doc/HACKING-QA.md#autoscan\n\n" |