Skip to content

Commit 9e23b3e

Browse files
authored
build: try to fix jdk 25 build
1 parent 2b61656 commit 9e23b3e

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/full-build.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,19 +8,19 @@ jobs:
88
strategy:
99
matrix:
1010
os: [ubuntu-latest, windows-latest, macos-latest]
11-
jre: [21]
11+
java-version: [21]
1212

1313
include:
1414
- os: ubuntu-latest
15-
jre: 25
15+
java-version: 25
1616

1717
steps:
1818
- name: Checkout
19-
uses: actions/checkout@v4
20-
- name: Set up JDK ${{ matrix.jre }}
21-
uses: actions/setup-java@v4
19+
uses: actions/checkout@v5
20+
- name: Set up JDK ${{ matrix.java-version }}
21+
uses: actions/setup-java@v5
2222
with:
23-
java-version: ${{ matrix.jre }}
23+
java-version: ${{ matrix.java-version }}
2424
distribution: 'temurin'
2525
cache: maven
2626
- name: Build

0 commit comments

Comments
 (0)