Skip to content

Commit

Permalink
chore: #444 updated maven files to use java 17
Browse files Browse the repository at this point in the history
  • Loading branch information
colin-janke committed Oct 29, 2024
1 parent f4beeab commit 09772f4
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/maven-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 11
- name: Set up JDK 17
uses: actions/setup-java@v1
with:
java-version: 11
java-version: 17
distribution: 'temurin'
- shell: bash
env:
gpg_private_key: ${{ secrets.gpg_private_key }}
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,10 @@ jobs:

steps:
- uses: actions/checkout@v2
- name: Set up JDK 11
- name: Set up JDK 17
uses: actions/setup-java@v1
with:
java-version: 11
java-version: 17
distribution: 'temurin'
- name: Build with Maven
run: mvn clean compile test --file pom.xml

0 comments on commit 09772f4

Please sign in to comment.