Skip to content

Commit

Permalink
build: use jdk 17 to build on github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
McFoggy committed Nov 7, 2022
1 parent e6e294d commit 3e69e37
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ jobs:
- name: Checkout Scm
uses: actions/checkout@v2

- name: Set up JDK 12
- name: Set up JDK
uses: actions/setup-java@v2
with:
java-version: '12'
java-version: '17'
distribution: 'adopt'
cache: maven

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ jobs:
- name: Checkout Scm
uses: actions/checkout@v2

- name: Set up JDK 12
- name: Set up JDK
uses: actions/setup-java@v2
with:
java-version: '12'
java-version: '17'
distribution: 'adopt'
cache: maven

Expand Down

0 comments on commit 3e69e37

Please sign in to comment.