Skip to content

Commit 92feba3

Browse files
Update bundled JRE to Java 25
1 parent c4a1cd6 commit 92feba3

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ jobs:
140140
# Package for each platform (only downloads JDK and creates VSIX, no recompilation)
141141
platforms=("win32-x64" "win32-arm64" "linux-x64" "linux-arm64" "darwin-x64" "darwin-arm64")
142142
for platform in ${platforms[@]}; do
143-
npm run download-jre -- --target ${platform} --javaVersion 21
143+
npm run download-jre -- --target ${platform} --javaVersion 25
144144
SKIP_WEBPACK=true vsce package ${{ env.publishPreReleaseFlag }} --target ${platform} -o java-${platform}-${{ env.EXT_VERSION }}-${GITHUB_RUN_NUMBER}.vsix
145145
done
146146

scripts/index.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ Commands:
113113
repo-fix Fix package-lock.json registry references
114114
115115
Examples:
116-
node scripts/index.js download-jre --target darwin-x64 --javaVersion 21
116+
node scripts/index.js download-jre --target darwin-x64 --javaVersion 25
117117
node scripts/index.js build-or-download
118118
node scripts/index.js watch-server
119119
`);

scripts/jre.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import { downloadFile, getScriptDir, extractTarGz, handleError, setupMainExecuti
88

99
const dirname = getScriptDir();
1010

11-
const LATEST_JRE = 21;
11+
const LATEST_JRE = 25;
1212

1313
const platformMapping = {
1414
"linux-arm64": "linux-aarch64",

0 commit comments

Comments
 (0)