-
Notifications
You must be signed in to change notification settings - Fork 38
44 lines (35 loc) · 1.52 KB
/
static-code-scanning.yaml
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
name: "Code Scanning - Action"
# Docs for this at https://github.com/github/codeql-action#usage
on:
schedule:
# ┌───────────── minute (0 - 59)
# │ ┌───────────── hour (0 - 23)
# │ │ ┌───────────── day of the month (1 - 31)
# │ │ │ ┌───────────── month (1 - 12 or JAN-DEC)
# │ │ │ │ ┌───────────── day of the week (0 - 6 or SUN-SAT)
# │ │ │ │ │
# │ │ │ │ │
# │ │ │ │ │
# * * * * *
- cron: '30 1 * * 1'
permissions: # added using https://github.com/step-security/secure-workflows
contents: read
jobs:
CodeQL-Build:
# CodeQL runs on ubuntu-latest, windows-latest, and macos-latest
runs-on: ubuntu-latest
permissions:
# required for all workflows
security-events: write
steps:
- name: Checkout repository
uses: actions/checkout@163217dfcd28294438ea1c1c149cfaf66eec283e
# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@af56b044b5d41c317aef5d19920b3183cb4fbbec
with:
languages: java
- name: Autobuild
uses: github/codeql-action/autobuild@af56b044b5d41c317aef5d19920b3183cb4fbbec
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@af56b044b5d41c317aef5d19920b3183cb4fbbec