Skip to content

fix(ffe): replace refreshed remote config #28321

fix(ffe): replace refreshed remote config

fix(ffe): replace refreshed remote config #28321

name: "CodeQL"
on:
push:
branches: [ master, hotfix/**/* ]
pull_request:
branches: [ master, hotfix/**/* ]
env:
DD_ENV: ci
DD_SERVICE: dd-trace-dotnet
jobs:
profiler:
name: Analyze Profiler
runs-on: ubuntu-latest
# Temporarily disabled
if: false
permissions:
actions: read
contents: read
security-events: write
steps:
- name: Checkout repository
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
- uses: actions/setup-dotnet@a98b56852c35b8e3190ac28c8c2271da59106c68 # v6.0.0
with:
global-json-file: global.json
- name: Download datadog-ci
run: |
npm install -g @datadog/datadog-ci
# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@f205ea1c3313d32999d8d6a48b4f6530d4437b38 # v4.37.4
with:
languages: csharp, cpp
# If you wish to specify custom queries, you can do so here or in a config file.
# By default, queries listed here will override any specified in a config file.
# Prefix the list here with "+" to use these queries and those in the config file.
# queries: ./path/to/local/query, your-org/your-repo/queries@main
# Learn more about CodeQL language support at https://git.io/codeql-language-support
- name: Setup Clang-16
# clang-16 is already installed in the ubuntu 24.04 used, but the default is clang-18,
# so we just need to modify where clang points.
run: |
sudo ln -s -f `which clang-16` `which clang`
sudo ln -s -f `which clang++-16` `which clang++`
- name: Build dd-trace-dotnet
run: |
./tracer/build.sh BuildProfilerHome BuildNativeLoader
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@f205ea1c3313d32999d8d6a48b4f6530d4437b38 # v4.37.4
- name: filter-sarif cpp
uses: advanced-security/filter-sarif@2da736ff05ef065cb2894ac6892e47b5eac2c3c0 # v1.1
with:
patterns: |
-**/src/Demos/**
-**/test/test-applications/**
-**/test/samples/**
-**/Web.config
-**/obj/**
input: ../results/cpp.sarif
output: ../results/cpp.sarif
- name: filter-sarif csharp
uses: advanced-security/filter-sarif@2da736ff05ef065cb2894ac6892e47b5eac2c3c0 # v1.1
with:
patterns: |
-**/src/Demos/**
-**/test/test-applications/**
-**/test/samples/**
-**/Web.config
-**/obj/**
input: ../results/csharp.sarif
output: ../results/csharp.sarif
# - name: Upload sarif file
# run: |
# datadog-ci sarif upload ../results/cpp.sarif --service dd-trace-dotnet
# datadog-ci sarif upload ../results/csharp.sarif --service dd-trace-dotnet
# env:
# DD_API_KEY: '${{ secrets.DD_STAGING_API_KEY }}'
tracer:
name: Analyze Tracer
runs-on: ubuntu-latest
# Temporarily disabled
if: false
permissions:
actions: read
contents: read
security-events: write
steps:
- name: Checkout repository
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
- uses: actions/setup-dotnet@a98b56852c35b8e3190ac28c8c2271da59106c68 # v6.0.0
with:
global-json-file: global.json
- name: Download datadog-ci
run: |
npm install -g @datadog/datadog-ci
# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@f205ea1c3313d32999d8d6a48b4f6530d4437b38 # v4.37.4
with:
languages: csharp, cpp
# If you wish to specify custom queries, you can do so here or in a config file.
# By default, queries listed here will override any specified in a config file.
# Prefix the list here with "+" to use these queries and those in the config file.
# queries: ./path/to/local/query, your-org/your-repo/queries@main
# Learn more about CodeQL language support at https://git.io/codeql-language-support
- name: Setup Clang-16
# clang-16 is already installed in the ubuntu 24.04 used, but the default is clang-18,
# so we just need to modify where clang points.
run: |
sudo ln -s -f `which clang-16` `which clang`
sudo ln -s -f `which clang++-16` `which clang++`
- name: Build dd-trace-dotnet
run: |
./tracer/build.sh BuildTracerHome
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@f205ea1c3313d32999d8d6a48b4f6530d4437b38 # v4.37.4
- name: filter-sarif cpp
uses: advanced-security/filter-sarif@2da736ff05ef065cb2894ac6892e47b5eac2c3c0 # v1.1
with:
patterns: |
-**/src/Demos/**
-**/test/test-applications/**
-**/test/samples/**
-**/Web.config
-**/obj/**
input: ../results/cpp.sarif
output: ../results/cpp.sarif
- name: filter-sarif csharp
uses: advanced-security/filter-sarif@2da736ff05ef065cb2894ac6892e47b5eac2c3c0 # v1.1
with:
patterns: |
-**/src/Demos/**
-**/test/test-applications/**
-**/test/samples/**
-**/Web.config
-**/obj/**
input: ../results/csharp.sarif
output: ../results/csharp.sarif
# - name: Upload sarif file
# run: |
# datadog-ci sarif upload ../results/cpp.sarif --service dd-trace-dotnet
# datadog-ci sarif upload ../results/csharp.sarif --service dd-trace-dotnet
# env:
# DD_API_KEY: '${{ secrets.DD_STAGING_API_KEY }}'