Skip to content

Commit 6b8aafa

Browse files
authored
Use Java 8
We could probably force Java 7 but it's not receiving any security updates. No idea how anyone could exploit javac inside a workflow but who knows... Signed-off-by: TheKodeToad <[email protected]>
1 parent 816d64e commit 6b8aafa

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/maven-build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ jobs:
1313

1414
steps:
1515
- uses: actions/checkout@v4
16-
- name: Set up JDK 7
16+
- name: Set up JDK 8
1717
uses: actions/setup-java@v4
1818
with:
19-
java-version: '7'
19+
java-version: '8'
2020
distribution: 'temurin'
2121
cache: maven
2222
- name: Build with Maven

0 commit comments

Comments
 (0)