-
Notifications
You must be signed in to change notification settings - Fork 100
37 lines (32 loc) · 1.28 KB
/
Copy pathcodeql.yml
File metadata and controls
37 lines (32 loc) · 1.28 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# NOTE: Automatic triggers intentionally removed — the repository uses
# GitHub's default Code Scanning setup (enabled in Security settings),
# which already runs CodeQL analysis on push, pull_request, and schedule.
# Running BOTH default setup AND an advanced workflow causes a conflict:
# "CodeQL analyses from advanced configurations cannot be processed
# when the default setup is enabled"
# This file is retained with workflow_dispatch only for manual debugging.
# See: https://github.com/kubestellar/docs/issues/6282
name: CodeQL Analysis
on:
workflow_dispatch:
permissions:
contents: read
jobs:
analyze:
name: Analyze (javascript-typescript)
runs-on: ubuntu-latest
permissions:
contents: read
security-events: write
steps:
- name: Checkout repository
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
- name: Initialize CodeQL
uses: github/codeql-action/init@1c5b675653bb5c22dbe9b12b556ec555138e09fd # v4.38.1
with:
languages: javascript-typescript
queries: security-and-quality
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@1c5b675653bb5c22dbe9b12b556ec555138e09fd # v4.38.1
with:
category: "/language:javascript-typescript"