Skip to content
Merged
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 README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ JDKs built by Oracle are [Oracle JDK](https://www.oracle.com/java/technologies/d
| Input Name | Default Value | Description |
|-----------------------|--------------:|-----------------------------------------------------------------|
| `website` | `oracle.com` | From where the JDK should be downloaded. |
| `release` | `26` | Java feature release number or name of an Early-Access project. |
| `release` | `27` | Java feature release number or name of an Early-Access project. |
| `version` | `latest` | An explicit version of a Java release. |
| `install` | `true` | Install the downloaded JDK archive file. |
| `install-as-version` | _empty_ | Control the value passed as `java-version` |
Expand Down
4 changes: 2 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ inputs:
required: true
default: 'oracle.com'
release:
description: 'Feature release number or project name, defaults to `26`'
description: 'Feature release number or project name, defaults to `27`'
required: true
default: '26'
default: '27'
version:
description: 'Additional version information, defaults to `latest`'
required: true
Expand Down
9 changes: 4 additions & 5 deletions src/ListOpenJavaDevelopmentKits.java
Original file line number Diff line number Diff line change
Expand Up @@ -40,17 +40,16 @@ class ListOpenJavaDevelopmentKits {
static final List<Page> PAGES =
List.of(
// JDK: General-Availability Release
Page.of("26") // https://jdk.java.net/26
.withAlias("26,latest")
Page.of("27") // https://jdk.java.net/27
.withAlias("27,latest")
.withAlias("ga,latest"),
// JDK: Early-Access Releases (latest)
Page.of("28") // https://jdk.java.net/28
.withAlias("28,latest")
.withAlias("ea,stable")
.withAlias("ea,latest"),
// JDK: Early-Access Releases (stable)
Page.of("27") // https://jdk.java.net/27
.withAlias("27,latest")
.withAlias("ea,stable"),
Comment thread
sormuras marked this conversation as resolved.

// Named projects, usually in Early-Access phase
Page.of("jextract") // https://jdk.java.net/jextract
.withAlias("jextract,latest")
Expand Down
1 change: 1 addition & 0 deletions test/Test.java
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ public static void main(String[] args) {
static void checkAllOracleJDKs() {
System.out.println();
System.out.println("// oracle.com - latest");
checkOracleJDK("27", "latest");
checkOracleJDK("26", "latest");
checkOracleJDK("25", "latest");
checkOracleJDK("21", "latest");
Expand Down
Loading