-
Notifications
You must be signed in to change notification settings - Fork 14
46 lines (39 loc) · 1.23 KB
/
Copy pathcodeql.yml
File metadata and controls
46 lines (39 loc) · 1.23 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
38
39
40
41
42
43
44
45
46
name: CodeQL
on:
push:
branches: [master]
pull_request:
schedule:
# Weekly, so a newly published query finds old code without waiting for a commit.
- cron: '17 4 * * 1'
workflow_dispatch:
permissions:
contents: read
concurrency:
group: codeql-${{ github.ref }}
cancel-in-progress: true
jobs:
analyze:
name: Analyze (actions)
runs-on: ubuntu-latest
permissions:
security-events: write
actions: read
contents: read
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
persist-credentials: false
# CodeQL has no F# extractor. csharp on this tree fails with
# "could not process any code written in C#". Actions YAML is the
# language CodeQL can actually see here; DevSkim covers F# source.
- name: Initialize CodeQL
uses: github/codeql-action/init@b96794f015dfd88f77b49b1c93e0fa7110f94c63 # v4
with:
languages: actions
queries: security-and-quality
config-file: ./.github/codeql/codeql-config.yml
- name: Analyze
uses: github/codeql-action/analyze@b96794f015dfd88f77b49b1c93e0fa7110f94c63 # v4
with:
category: /language:actions