-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
introduce CodeQL to enable SAST scanning
Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com> Signed-off-by: temenuzhka-thede <temenuzhka.thede@docker.com> Co-authored-by: CrazyMax <crazy-max@users.noreply.github.com>
- Loading branch information
temenuzhka-thede
and
CrazyMax
committed
Oct 24, 2023
1 parent
b4bedf8
commit b96c2c0
Showing
1 changed file
with
47 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
name: codeql | ||
|
||
on: | ||
push: | ||
branches: | ||
- 'master' | ||
- 'releases/v*' | ||
paths: | ||
- '.github/workflows/codeql.yml' | ||
- 'dist/**' | ||
- 'src/**' | ||
pull_request: | ||
paths: | ||
- '.github/workflows/codeql.yml' | ||
- 'dist/**' | ||
- 'src/**' | ||
|
||
permissions: | ||
actions: read | ||
contents: read | ||
security-events: write | ||
|
||
jobs: | ||
analyze: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
language: | ||
- javascript-typescript | ||
steps: | ||
- | ||
name: Checkout | ||
uses: actions/checkout@v4 | ||
- | ||
name: Initialize CodeQL | ||
uses: github/codeql-action/init@v2 | ||
with: | ||
languages: ${{ matrix.language }} | ||
- | ||
name: Autobuild | ||
uses: github/codeql-action/autobuild@v2 | ||
- | ||
name: Perform CodeQL Analysis | ||
uses: github/codeql-action/analyze@v2 | ||
with: | ||
category: "/language:${{matrix.language}}" |