Skip to content

Commit

Permalink
Specify maven version (#46)
Browse files Browse the repository at this point in the history
  • Loading branch information
planger committed Dec 22, 2023
1 parent ba3386d commit 5ca6f92
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 10 deletions.
9 changes: 4 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up JDK 17
uses: actions/setup-java@v3
- name: Setup Java and Maven
uses: s4u/setup-maven-action@v1.11.0
with:
java-version: '17'
distribution: 'temurin'
cache: maven
java-version: 17
maven-version: 3.9.2
- name: Build (mvn package)
run: mvn -B package --file com.eclipsesource.megit.parent/pom.xml
9 changes: 4 additions & 5 deletions .github/workflows/create-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up JDK 17
uses: actions/setup-java@v3
- name: Setup Java and Maven
uses: s4u/setup-maven-action@v1.11.0
with:
java-version: '17'
distribution: 'temurin'
cache: maven
java-version: 17
maven-version: 3.9.2
- name: Build (mvn package)
run: mvn -B package --file com.eclipsesource.megit.parent/pom.xml
- name: Create Release
Expand Down

0 comments on commit 5ca6f92

Please sign in to comment.