Skip to content

Commit

Permalink
GH build java 17
Browse files Browse the repository at this point in the history
  • Loading branch information
ingleivj committed Oct 20, 2024
1 parent 4fe8917 commit db96d9c
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 7 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,11 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Set up JDK 1.8
uses: actions/setup-java@v1
- uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: 1.8
distribution: 'temurin'
java-version: '17'
- name: Build with Maven
run: mvn -T 1C -B clean install
7 changes: 4 additions & 3 deletions .github/workflows/releaseGithub.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,12 @@ jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v4
- name: Set up JDK 1.8
uses: actions/setup-java@v1
uses: actions/setup-java@v4
with:
java-version: 1.8
distribution: 'temurin'
java-version: '17'
- name: Run Maven release
run: ./releaseGithub.sh
env:
Expand Down

0 comments on commit db96d9c

Please sign in to comment.