mirror of
https://github.com/home-assistant/core.git
synced 2026-08-03 20:24:55 +02:00
3c05933f52
Signed-off-by: dependabot[bot] <support@github.com>
39 lines
1013 B
YAML
39 lines
1013 B
YAML
name: "CodeQL"
|
|
|
|
# yamllint disable-line rule:truthy
|
|
on:
|
|
schedule:
|
|
- cron: "30 18 * * 4"
|
|
|
|
permissions: {}
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
analyze:
|
|
name: Analyze
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 360
|
|
permissions:
|
|
actions: read # To read workflow information for CodeQL
|
|
contents: read # To check out the repository
|
|
security-events: write # To upload CodeQL results
|
|
|
|
steps:
|
|
- name: Check out code from GitHub
|
|
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
|
|
with:
|
|
persist-credentials: false
|
|
|
|
- name: Initialize CodeQL
|
|
uses: github/codeql-action/init@e4fba868fa4b1b91e1fdab776edc8cfbe6e9fb81 # v4.37.3
|
|
with:
|
|
languages: python
|
|
|
|
- name: Perform CodeQL Analysis
|
|
uses: github/codeql-action/analyze@e4fba868fa4b1b91e1fdab776edc8cfbe6e9fb81 # v4.37.3
|
|
with:
|
|
category: "/language:python"
|