Fix ifdef statement after ST7796 merge to resolve screen color issues #15178
Workflow file for this run
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: Semgrep Differential Scan | |
| on: pull_request | |
| permissions: read-all | |
| jobs: | |
| semgrep-diff: | |
| runs-on: ubuntu-24.04 | |
| container: | |
| image: semgrep/semgrep | |
| steps: | |
| # step 1 | |
| - name: clone application source code | |
| uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| # step 2 | |
| - name: differential scan | |
| run: | | |
| semgrep scan \ | |
| --error \ | |
| --metrics=off \ | |
| --baseline-commit ${{ github.event.pull_request.base.sha }} \ | |
| --config="p/default" |