build: add Java 22 setup to CI workflow
This commit is contained in:
parent
193f444f4f
commit
966d99f43c
1 changed files with 6 additions and 0 deletions
|
@ -12,6 +12,12 @@ jobs:
|
||||||
steps:
|
steps:
|
||||||
- name: "Checkout"
|
- name: "Checkout"
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v3
|
||||||
|
- name: Setup Java 22
|
||||||
|
uses: actions/setup-java@v3
|
||||||
|
with:
|
||||||
|
distribution: "temurin"
|
||||||
|
java-version: "22"
|
||||||
|
|
||||||
- uses: actions/cache@v3
|
- uses: actions/cache@v3
|
||||||
working-directory: ./backend
|
working-directory: ./backend
|
||||||
with:
|
with:
|
||||||
|
|
Reference in a new issue