Set NSPrivacyTracking to true of domains are set (#902) #125
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 Code Scanning | |
| on: | |
| push: | |
| branches: | |
| - 'dev' | |
| pull_request: | |
| branches: | |
| - 'dev' | |
| schedule: | |
| - cron: "0 2 * * MON" | |
| jobs: | |
| semgrep_scan: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| - name: Install Semgrep | |
| run: | | |
| python3 -m pip install semgrep | |
| - name: Run Semgrep Scan | |
| run: | | |
| semgrep scan \ | |
| --config p/java \ | |
| --config p/security-audit \ | |
| --sarif \ | |
| --output semgrep-java-scan.sarif | |
| - name: Upload SARIF to Code Scanning | |
| uses: github/codeql-action/upload-sarif@38697555549f1db7851b81482ff19f1fa5c4fedc # 4.34.1 | |
| with: | |
| sarif_file: semgrep-java-scan.sarif |