@@ -14,6 +14,7 @@ final class Runtime
1414 public const JAVA_11 = 'java11 ' ;
1515 public const JAVA_17 = 'java17 ' ;
1616 public const JAVA_21 = 'java21 ' ;
17+ public const JAVA_25 = 'java25 ' ;
1718 public const JAVA_8 = 'java8 ' ;
1819 public const JAVA_8_AL_2 = 'java8.al2 ' ;
1920 public const NODEJS = 'nodejs ' ;
@@ -37,6 +38,7 @@ final class Runtime
3738 public const PYTHON_3_11 = 'python3.11 ' ;
3839 public const PYTHON_3_12 = 'python3.12 ' ;
3940 public const PYTHON_3_13 = 'python3.13 ' ;
41+ public const PYTHON_3_14 = 'python3.14 ' ;
4042 public const PYTHON_3_6 = 'python3.6 ' ;
4143 public const PYTHON_3_7 = 'python3.7 ' ;
4244 public const PYTHON_3_8 = 'python3.8 ' ;
@@ -60,6 +62,7 @@ public static function exists(string $value): bool
6062 self ::JAVA_11 => true ,
6163 self ::JAVA_17 => true ,
6264 self ::JAVA_21 => true ,
65+ self ::JAVA_25 => true ,
6366 self ::JAVA_8 => true ,
6467 self ::JAVA_8_AL_2 => true ,
6568 self ::NODEJS => true ,
@@ -83,6 +86,7 @@ public static function exists(string $value): bool
8386 self ::PYTHON_3_11 => true ,
8487 self ::PYTHON_3_12 => true ,
8588 self ::PYTHON_3_13 => true ,
89+ self ::PYTHON_3_14 => true ,
8690 self ::PYTHON_3_6 => true ,
8791 self ::PYTHON_3_7 => true ,
8892 self ::PYTHON_3_8 => true ,
0 commit comments