|
|
@@ -0,0 +1,46 @@
|
|
|
+name: CodeQL
|
|
|
+
|
|
|
+on:
|
|
|
+ push:
|
|
|
+ branches: ['**']
|
|
|
+ pull_request:
|
|
|
+ branches: ['**']
|
|
|
+ schedule:
|
|
|
+ # Run weekly on Sunday at 3:00 UTC
|
|
|
+ - cron: '0 3 * * 0'
|
|
|
+
|
|
|
+# Cancel in-progress runs for the same branch
|
|
|
+concurrency:
|
|
|
+ group: ${{ github.workflow }}-${{ github.ref }}
|
|
|
+ cancel-in-progress: true
|
|
|
+
|
|
|
+permissions:
|
|
|
+ contents: read
|
|
|
+ security-events: write
|
|
|
+
|
|
|
+jobs:
|
|
|
+ analyze:
|
|
|
+ name: Analyze
|
|
|
+ runs-on: ubuntu-latest
|
|
|
+ strategy:
|
|
|
+ fail-fast: false
|
|
|
+ matrix:
|
|
|
+ language: ['javascript-typescript', 'python']
|
|
|
+ steps:
|
|
|
+ - name: Checkout repository
|
|
|
+ uses: actions/checkout@v4
|
|
|
+
|
|
|
+ - name: Initialize CodeQL
|
|
|
+ uses: github/codeql-action/init@v3
|
|
|
+ with:
|
|
|
+ languages: ${{ matrix.language }}
|
|
|
+ # Use default queries plus security-extended
|
|
|
+ queries: security-extended
|
|
|
+
|
|
|
+ - name: Autobuild
|
|
|
+ uses: github/codeql-action/autobuild@v3
|
|
|
+
|
|
|
+ - name: Perform CodeQL Analysis
|
|
|
+ uses: github/codeql-action/analyze@v3
|
|
|
+ with:
|
|
|
+ category: '/language:${{ matrix.language }}'
|