Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ jobs:
# Package for each platform (only downloads JDK and creates VSIX, no recompilation)
platforms=("win32-x64" "win32-arm64" "linux-x64" "linux-arm64" "darwin-x64" "darwin-arm64")
for platform in ${platforms[@]}; do
npm run download-jre -- --target ${platform} --javaVersion 21
npm run download-jre -- --target ${platform} --javaVersion 25
SKIP_WEBPACK=true vsce package ${{ env.publishPreReleaseFlag }} --target ${platform} -o java-${platform}-${{ env.EXT_VERSION }}-${GITHUB_RUN_NUMBER}.vsix
done

Expand Down
2 changes: 1 addition & 1 deletion scripts/index.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ Commands:
repo-fix Fix package-lock.json registry references

Examples:
node scripts/index.js download-jre --target darwin-x64 --javaVersion 21
node scripts/index.js download-jre --target darwin-x64 --javaVersion 25
node scripts/index.js build-or-download
node scripts/index.js watch-server
`);
Expand Down
2 changes: 1 addition & 1 deletion scripts/jre.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { downloadFile, getScriptDir, extractTarGz, handleError, setupMainExecuti

const dirname = getScriptDir();

const LATEST_JRE = 21;
const LATEST_JRE = 25;

const platformMapping = {
"linux-arm64": "linux-aarch64",
Expand Down
Loading