2022-01-20 23:15:07 +07:00
|
|
|
name: CodeQL Workflow
|
|
|
|
on:
|
|
|
|
workflow_dispatch:
|
|
|
|
schedule:
|
|
|
|
- cron: '0 15 * * 6'
|
2022-05-26 07:50:23 +07:00
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
|
2022-01-20 23:15:07 +07:00
|
|
|
jobs:
|
|
|
|
codeql:
|
2022-05-26 07:50:23 +07:00
|
|
|
permissions:
|
|
|
|
actions: read # for github/codeql-action/init to get workflow details
|
|
|
|
contents: read # for actions/checkout to fetch code
|
|
|
|
security-events: write # for github/codeql-action/autobuild to send a status report
|
2022-01-20 23:15:07 +07:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
2023-09-09 17:53:40 +07:00
|
|
|
uses: actions/checkout@v4
|
2022-01-20 23:15:07 +07:00
|
|
|
with:
|
|
|
|
fetch-depth: 2
|
|
|
|
|
|
|
|
- name: Initialize CodeQL
|
2023-12-18 17:33:13 +07:00
|
|
|
uses: github/codeql-action/init@v3
|
2022-01-20 23:15:07 +07:00
|
|
|
with:
|
|
|
|
config-file: ./.github/codeql/codeql-configuration.yml
|
|
|
|
languages: javascript
|
|
|
|
|
|
|
|
- name: Autobuild
|
2023-12-18 17:33:13 +07:00
|
|
|
uses: github/codeql-action/autobuild@v3
|
2022-01-20 23:15:07 +07:00
|
|
|
|
|
|
|
- name: Perform CodeQL Analysis
|
2023-12-18 17:33:13 +07:00
|
|
|
uses: github/codeql-action/analyze@v3
|