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
- cron: "29 13 * * 2"# weekly at 13:29 UTC on Tuesday
18
+
19
+
permissions:
20
+
contents: read
21
+
22
+
jobs:
23
+
analyze:
24
+
permissions:
25
+
contents: read
26
+
actions: read # for github/codeql-action/init to get workflow details
27
+
security-events: write # for github/codeql-action/analyze to upload SARIF results
28
+
runs-on: ubuntu-latest
29
+
steps:
30
+
- uses: actions/checkout@v4
31
+
32
+
- name: Set up Java 17
33
+
uses: actions/setup-java@v4
34
+
with:
35
+
distribution: temurin
36
+
java-version: 17
37
+
38
+
- name: Set up gradle
39
+
uses: gradle/actions/setup-gradle@v4
40
+
41
+
- name: Initialize CodeQL
42
+
uses: github/codeql-action/init@v3
43
+
with:
44
+
languages: java, actions
45
+
# using "latest" helps to keep up with the latest Kotlin support
46
+
# see https://github.com/github/codeql-action/issues/1555#issuecomment-1452228433
47
+
tools: latest
48
+
49
+
- name: Assemble
50
+
# --no-build-cache is required for codeql to analyze all modules
51
+
# --no-daemon is required for codeql to observe the compilation
52
+
# (see https://docs.github.com/en/code-security/codeql-cli/getting-started-with-the-codeql-cli/preparing-your-code-for-codeql-analysis#specifying-build-commands)
0 commit comments