Fix the build by updating to JDK 17

This commit is contained in:
Alexander Bakker 2023-08-30 14:31:25 +02:00
parent 3278d6544b
commit f38b6ec586
3 changed files with 12 additions and 2 deletions

View file

@ -24,6 +24,11 @@ jobs:
run: |
find app/src/main/java/com/beemdevelopment/aegis/importers ! \( -name AegisImporter.java -o -name "DatabaseImporter*" \) -type f -exec rm -f {} +
sed -i '/Importer.class/d' app/src/main/java/com/beemdevelopment/aegis/importers/DatabaseImporter.java
- uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'
cache: 'gradle'
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
with: