[C] invoke the client when in replay_merge_close #3237
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: "CodeQL" | |
on: | |
workflow_call: | |
workflow_dispatch: | |
repository_dispatch: | |
types: run-commit-tests | |
push: | |
branches: | |
- master | |
- release/** | |
pull_request: | |
types: [opened, synchronize] | |
branches: | |
- master | |
- release/** | |
concurrency: | |
group: codeql-${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
env: | |
JAVA_VERSION: '17' | |
jobs: | |
analyze: | |
name: Analyze | |
runs-on: ubuntu-latest | |
permissions: | |
actions: read | |
contents: read | |
security-events: write | |
strategy: | |
fail-fast: false | |
matrix: | |
language: [ java, cpp ] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v5 | |
with: | |
ref: ${{ github.sha }} | |
- name: Setup java | |
uses: actions/setup-java@v5 | |
with: | |
distribution: 'zulu' | |
java-version: ${{ env.JAVA_VERSION }} | |
- name: Setup BUILD_JAVA_HOME & BUILD_JAVA_VERSION | |
run: | | |
java -Xinternalversion | |
echo "BUILD_JAVA_HOME=${JAVA_HOME}" >> $GITHUB_ENV | |
echo "BUILD_JAVA_VERSION=${{ env.JAVA_VERSION }}" >> $GITHUB_ENV | |
- name: Install compiler | |
run: sudo apt-get install -y g++-14 | |
- name: Initialize CodeQL | |
uses: github/codeql-action/init@v3 | |
with: | |
languages: ${{ matrix.language }} | |
config-file: ./.github/codeql/codeql-config.yml | |
packs: "codeql/${{ matrix.language }}-queries:AlertSuppression.ql" | |
- name: Autobuild | |
uses: github/codeql-action/autobuild@v3 | |
- name: Perform CodeQL Analysis | |
id: analyze | |
uses: github/codeql-action/analyze@v3 | |
with: | |
category: "/language:${{ matrix.language }}" | |
upload: false | |
output: sarif-results | |
- name: filter-sarif | |
uses: advanced-security/filter-sarif@v1 | |
with: | |
# Filter out generated and third party code. | |
patterns: | | |
-**/thirdparty/** | |
-**/generated/** | |
-**/generated-src/** | |
-**/generated-test/** | |
-**/_deps/** | |
-**/aeron-samples/**:java/uncaught-number-format-exception | |
-**/*Test.java:java/uncaught-number-format-exception | |
-**/*Tool.java:java/uncaught-number-format-exception | |
-**/*Debug*.java:java/uncaught-number-format-exception | |
input: sarif-results/${{ matrix.language }}.sarif | |
output: sarif-results/${{ matrix.language }}.sarif | |
- name: Upload SARIF | |
id: upload | |
uses: github/codeql-action/upload-sarif@v3 | |
with: | |
sarif_file: sarif-results/${{ matrix.language }}.sarif | |
wait-for-processing: true | |
# optional: for debugging the uploaded sarif | |
- name: Upload loc as a Build Artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: sarif-results-${{ matrix.language }} | |
path: sarif-results | |
retention-days: 1 | |
- name: Dismiss alerts | |
if: github.ref == 'refs/heads/master' | |
uses: advanced-security/dismiss-alerts@v2 | |
with: | |
sarif-id: ${{ steps.upload.outputs.sarif-id }} | |
sarif-file: sarif-results/${{ matrix.language }}.sarif | |
env: | |
GITHUB_TOKEN: ${{ github.token }} |