ruby: Handle Ruby JIT PC with JIT frame type (upstream prep) #196
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: | |
| push: | |
| branches: [ "main" ] | |
| pull_request: | |
| branches: [ "main" ] | |
| schedule: | |
| - cron: "21 6 * * 1" | |
| permissions: read-all | |
| jobs: | |
| analyze: | |
| permissions: | |
| security-events: write # for github/codeql-action/analyze to upload SARIF results | |
| name: Analyze Go | |
| if: ${{ github.actor != 'dependabot[bot]' && github.repository == 'open-telemetry/opentelemetry-ebpf-profiler' }} | |
| runs-on: ubuntu-24.04 # CodeQL CLI only supports x86_64 Linux | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| - name: Set up environment | |
| uses: ./.github/workflows/env | |
| - name: Initialize CodeQL | |
| uses: github/codeql-action/init@c10b8064de6f491fea524254123dbe5e09572f13 # v4.35.1 | |
| with: | |
| languages: go | |
| - name: Build Artifact | |
| run: make | |
| - name: Perform CodeQL Analysis | |
| uses: github/codeql-action/analyze@c10b8064de6f491fea524254123dbe5e09572f13 # v4.35.1 | |
| with: | |
| category: "/language:Go" | |
| timeout-minutes: 10 |