2023-06-12 05:48:55 +00:00
|
|
|
---
|
2023-08-15 16:49:04 +00:00
|
|
|
name: CodeQL
|
2022-09-14 07:20:20 +00:00
|
|
|
|
|
|
|
on:
|
|
|
|
schedule:
|
2022-09-29 07:36:19 +00:00
|
|
|
- cron: "30 22 * * 4"
|
2022-09-14 07:20:20 +00:00
|
|
|
|
2022-09-29 07:36:19 +00:00
|
|
|
permissions:
|
2022-09-29 06:04:18 +00:00
|
|
|
contents: read
|
|
|
|
|
2022-09-14 07:20:20 +00:00
|
|
|
jobs:
|
|
|
|
analyze:
|
|
|
|
name: Analyze
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
permissions:
|
|
|
|
actions: read
|
|
|
|
contents: read
|
|
|
|
security-events: write
|
|
|
|
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
2023-06-12 05:48:55 +00:00
|
|
|
language: [python]
|
2022-09-14 07:20:20 +00:00
|
|
|
|
|
|
|
steps:
|
2022-09-29 07:36:19 +00:00
|
|
|
- name: Checkout repository
|
2023-10-01 05:45:12 +00:00
|
|
|
uses: actions/checkout@v4
|
2022-09-29 07:36:19 +00:00
|
|
|
|
|
|
|
- name: Initialize CodeQL
|
2024-01-01 13:36:00 +00:00
|
|
|
uses: github/codeql-action/init@v3
|
2022-09-29 07:36:19 +00:00
|
|
|
with:
|
|
|
|
languages: ${{ matrix.language }}
|
|
|
|
|
|
|
|
- name: Perform CodeQL Analysis
|
2024-01-01 13:36:00 +00:00
|
|
|
uses: github/codeql-action/analyze@v3
|