Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: specify language in codeql analysis #6179

Draft
wants to merge 1 commit into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
ci: specify language in codeql analysis
For consistency with the auto-generated yaml:

    - name: Perform CodeQL Analysis
      uses: github/codeql-action/analyze@v3
      with:
        category: "/language:${{matrix.language}}"
  • Loading branch information
kmk3 committed Jan 30, 2024
commit cb98d48f583b8c3d9e0560786f407b47f237a13f
2 changes: 2 additions & 0 deletions .github/workflows/check-c.yml
Original file line number Diff line number Diff line change
Expand Up @@ -162,3 +162,5 @@ jobs:

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@b7bf0a3ed3ecfa44160715d7c442788f65f0f923
with:
category: "/language:cpp"
2 changes: 2 additions & 0 deletions .github/workflows/check-python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,3 +56,5 @@ jobs:

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@b7bf0a3ed3ecfa44160715d7c442788f65f0f923
with:
category: "/language:python"
Loading