Skip to content

Commit b47de00

Browse files
fix: use Java 11 in CodeQL workflow, matching project source/target level
The project compiles at source/target 11 (pom.xml), so Java 8 was already wrong regardless of the plugin issue. Java 11 is the minimum that can build this project and also satisfies the git-commit-id-maven- plugin:10.0.0 Java >= 11 prerequisite.
1 parent f0b04e1 commit b47de00

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/codeql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
steps:
2222
- uses: actions/checkout@v6
2323
- uses: actions/setup-java@v5
24-
with: { java-version: '21', distribution: temurin }
24+
with: { java-version: '11', distribution: temurin }
2525
- uses: github/codeql-action/init@v4
2626
with: { languages: java, queries: +security-and-quality }
2727
- name: Build with Maven

0 commit comments

Comments
 (0)