Skip to content

Commit

Permalink
Github Action: Use Java 17
Browse files Browse the repository at this point in the history
  • Loading branch information
ecki committed May 24, 2024
1 parent ef41e8a commit dc90645
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8
- name: Build with Maven
run: mvn -B verify --file pom.xml
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
cache: maven
- run: mvn -V -B verify -Prelease-profile

0 comments on commit dc90645

Please sign in to comment.