-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
T6349: added reusable check workflows
- Loading branch information
Showing
4 changed files
with
78 additions
and
4 deletions.
There are no files selected for viewing
This file contains 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
File renamed without changes.
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
# This workflow helps to analyze repository code for vulnerabilities, bugs, and other errors using CodeQL. | ||
# For that CodeQL Action is used: https://github.com/github/codeql-action | ||
# Learn more about CodeQL at https://codeql.github.com/ | ||
|
||
name: CodeQL | ||
|
||
on: | ||
workflow_call: | ||
inputs: | ||
languages: | ||
description: "Optional input to set languages for CodeQL check. Supported values are: 'cpp', 'csharp', 'go', 'java', 'javascript', 'typescript', 'python', 'ruby'. To set multiple languages, use the same syntax as you can see in the default value." | ||
required: false | ||
type: string | ||
default: "['python']" | ||
codeql-cfg-path: | ||
description: "Optional input to set path to a CodeQL config file" | ||
required: false | ||
type: string | ||
build-command: | ||
description: "Optional input to specify manual build command. The multiline syntax is supported" | ||
required: false | ||
type: string | ||
|
||
jobs: | ||
analyze: | ||
name: Analyze | ||
runs-on: ubuntu-latest | ||
permissions: | ||
actions: read | ||
contents: read | ||
security-events: write | ||
|
||
strategy: | ||
fail-fast: false | ||
matrix: | ||
language: ${{fromJson(inputs.languages)}} | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
# Initializes the CodeQL tools for scanning. | ||
- name: Initialize CodeQL | ||
uses: github/codeql-action/init@v3 | ||
with: | ||
languages: ${{matrix.language}} | ||
config-file: ${{inputs.codeql-cfg-path}} | ||
|
||
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java). | ||
# If this step fails, configure a build command manually using build-command input. This command will be executed in the corresponding step. | ||
- name: Autobuild | ||
if: ${{!inputs.build-command}} | ||
uses: github/codeql-action/autobuild@v3 | ||
|
||
- name: Manual build | ||
if: ${{inputs.build-command}} | ||
run: | | ||
${{inputs.build-command}} | ||
- name: Perform CodeQL Analysis | ||
uses: github/codeql-action/analyze@v3 |