We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2b61656 commit 9e23b3eCopy full SHA for 9e23b3e
1 file changed
.github/workflows/full-build.yml
@@ -8,19 +8,19 @@ jobs:
8
strategy:
9
matrix:
10
os: [ubuntu-latest, windows-latest, macos-latest]
11
- jre: [21]
+ java-version: [21]
12
13
include:
14
- os: ubuntu-latest
15
- jre: 25
+ java-version: 25
16
17
steps:
18
- name: Checkout
19
- uses: actions/checkout@v4
20
- - name: Set up JDK ${{ matrix.jre }}
21
- uses: actions/setup-java@v4
+ uses: actions/checkout@v5
+ - name: Set up JDK ${{ matrix.java-version }}
+ uses: actions/setup-java@v5
22
with:
23
- java-version: ${{ matrix.jre }}
+ java-version: ${{ matrix.java-version }}
24
distribution: 'temurin'
25
cache: maven
26
- name: Build
0 commit comments