Upgrade 22.3.X builds to 22.3.3.

GraalVM Updater no longer works on `22.3.0`.
This commit is contained in:
Fabio Niephaus 2023-09-06 09:13:37 +02:00
parent 570f6b20e6
commit d3b90f817c
No known key found for this signature in database
GPG Key ID: F21CF5275F31DFD6
2 changed files with 4 additions and 4 deletions

View File

@ -133,15 +133,15 @@ jobs:
strategy: strategy:
matrix: matrix:
version: ['latest'] version: ['latest']
java-version: ['19'] java-version: ['17']
components: ['native-image'] components: ['native-image']
os: [macos-latest, windows-latest, ubuntu-latest] os: [macos-latest, windows-latest, ubuntu-latest]
include: include:
- version: '22.3.0' - version: '22.3.3'
java-version: '11' java-version: '11'
components: 'native-image' components: 'native-image'
os: ubuntu-latest os: ubuntu-latest
- version: '22.3.0' - version: '22.3.3'
java-version: '17' java-version: '17'
components: 'native-image' components: 'native-image'
os: ubuntu-latest os: ubuntu-latest

View File

@ -164,7 +164,7 @@ export async function setUpGraalVMLatest_22_X(
gdsToken: string, gdsToken: string,
javaVersion: string javaVersion: string
): Promise<string> { ): Promise<string> {
const lockedVersion = javaVersion === '19' ? '22.3.1' : '22.3.2' const lockedVersion = javaVersion === '19' ? '22.3.1' : '22.3.3'
if (gdsToken.length > 0) { if (gdsToken.length > 0) {
return setUpGraalVMRelease(gdsToken, lockedVersion, javaVersion) return setUpGraalVMRelease(gdsToken, lockedVersion, javaVersion)
} }