Skip to content

Commit b25168a

Browse files
committed
Merge remote-tracking branch 'origin/master' into master
2 parents 8293a6a + f55e99a commit b25168a

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

.github/workflows/codeql-analysis.yml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,9 @@ jobs:
1818
# We must fetch at least the immediate parents so that if this is
1919
# a pull request then we can checkout the head.
2020
fetch-depth: 2
21+
- uses: actions/setup-java@v1
22+
with:
23+
java-version: '11'
2124

2225
# If this run was triggered by a pull request event, then checkout
2326
# the head of the pull request instead of the merge commit.
@@ -27,11 +30,12 @@ jobs:
2730
# Initializes the CodeQL tools for scanning.
2831
- name: Initialize CodeQL
2932
uses: github/codeql-action/init@v1
33+
with:
34+
languages: java
3035

31-
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
32-
# If this step fails, then you should remove it and run the build manually (see below)
33-
- name: Autobuild
34-
uses: github/codeql-action/autobuild@v1
36+
- name: Build project
37+
run: |
38+
./gradlew jar
3539
3640
- name: Perform CodeQL Analysis
3741
uses: github/codeql-action/analyze@v1

0 commit comments

Comments
 (0)