Bumped CI to Java 11
This commit is contained in:
parent
1d5ae68300
commit
6567cea624
1 changed files with 3 additions and 4 deletions
5
.github/workflows/maven.yml
vendored
5
.github/workflows/maven.yml
vendored
|
@ -4,15 +4,14 @@ on: [push]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
|
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v1
|
- uses: actions/checkout@v1
|
||||||
- name: Set up JDK 1.8
|
- name: Set up JDK 11
|
||||||
uses: actions/setup-java@v1
|
uses: actions/setup-java@v1
|
||||||
with:
|
with:
|
||||||
java-version: 1.8
|
java-version: 11
|
||||||
- name: Build with Maven
|
- name: Build with Maven
|
||||||
run: mvn -B package --file pom.xml
|
run: mvn -B package --file pom.xml
|
||||||
- run: mkdir -p target
|
- run: mkdir -p target
|
||||||
|
|
Reference in a new issue