build(deps): bump github/codeql-action from 4e83f6b818d7c9f52143570963b2c7f7f055decb to cf6550fa508d278d4c55bd6bcb552555d4411931 in the github-actions group #134
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: Cppcheck | |
on: | |
workflow_dispatch: | |
push: | |
branches: [trunk] | |
pull_request: | |
branches: [trunk] | |
permissions: | |
contents: read | |
jobs: | |
cppcheck: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- name: Cppcheck | |
run: | | |
sudo apt install -y cppcheck | |
cppcheck . |