Skip to content

Commit

Permalink
#1549 fixed action for java 11 with maven cache enabled
Browse files Browse the repository at this point in the history
  • Loading branch information
tfr42 committed Aug 4, 2023
1 parent 85be87a commit d9bc42f
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,12 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v1
- name: Set up JDK 1.8
uses: actions/setup-java@v1
- uses: actions/checkout@v3
- name: Set up JDK 11
uses: actions/setup-java@v3
with:
java-version: 11
distribution: temurin
cache: 'maven'
- name: Build with Maven
run: mvn -B -q -fae install -P integration-tests --file pom.xml
run: mvn -B -q -fae verify -P integration-tests --file pom.xml

0 comments on commit d9bc42f

Please sign in to comment.