Skip to content

Commit e42eb33

Browse files
committed
work
1 parent fb7f591 commit e42eb33

File tree

3 files changed

+15
-0
lines changed

3 files changed

+15
-0
lines changed

.github/workflows/codacy-analysis.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,11 @@ jobs:
2323
- name: Checkout code
2424
uses: actions/checkout@v2
2525

26+
- name: Set up JDK 15
27+
uses: actions/setup-java@v1
28+
with:
29+
java-version: 15
30+
2631
# Execute Codacy Analysis CLI and generate a SARIF output with the security issues identified during the analysis
2732
- name: Run Codacy Analysis CLI
2833
uses: codacy/codacy-analysis-cli-action@1.0.0

.github/workflows/codeql-analysis.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,11 @@ jobs:
3636
# a pull request then we can checkout the head.
3737
fetch-depth: 2
3838

39+
- name: Set up JDK 15
40+
uses: actions/setup-java@v1
41+
with:
42+
java-version: 15
43+
3944
# If this run was triggered by a pull request event, then checkout
4045
# the head of the pull request instead of the merge commit.
4146
- run: git checkout HEAD^2

.github/workflows/ossar-analysis.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,11 @@ jobs:
2424
# a pull request then we can checkout the head.
2525
fetch-depth: 2
2626

27+
- name: Set up JDK 15
28+
uses: actions/setup-java@v1
29+
with:
30+
java-version: 15
31+
2732
# If this run was triggered by a pull request event, then checkout
2833
# the head of the pull request instead of the merge commit.
2934
- run: git checkout HEAD^2

0 commit comments

Comments
 (0)