You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# The branches below must be a subset of the branches above
8
+
branches: [ "main" ]
9
+
schedule:
10
+
- cron: '28 19 * * 6'
11
+
# allows the workflow to be manually executed any time
12
+
workflow_dispatch:
13
+
14
+
jobs:
15
+
analyze:
16
+
name: Analyze
17
+
runs-on: ubuntu-latest
18
+
permissions:
19
+
actions: read
20
+
contents: read
21
+
security-events: write
22
+
23
+
strategy:
24
+
fail-fast: false
25
+
matrix:
26
+
language: [ 'java' ]
27
+
28
+
steps:
29
+
- name: Checkout repository
30
+
uses: actions/checkout@v3
31
+
32
+
# Initializes the CodeQL tools for scanning.
33
+
- name: Initialize CodeQL
34
+
uses: github/codeql-action/init@v2
35
+
with:
36
+
languages: ${{ matrix.language }}
37
+
# If you wish to specify custom queries, you can do so here or in a config file.
38
+
# By default, queries listed here will override any specified in a config file.
39
+
# Prefix the list here with "+" to use these queries and those in the config file.
40
+
41
+
# Details on CodeQL's query packs refer to : https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs
0 commit comments