Skip to content

Commit 2e75791

Browse files
committed
Update to Java 19
1 parent cefed9a commit 2e75791

File tree

4 files changed

+9
-8
lines changed

4 files changed

+9
-8
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@ This project uses tags and branches for [release management](https://docs.github
66

77

88
## [Unreleased]
9-
_nothing notable_
9+
### Changed
10+
- Default value of `release` input to Java `19`
1011

1112
## [1.2.1] - 2022-08-08
1213
### Fixed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ JDKs built by Oracle are [Oracle JDK](https://www.oracle.com/java/technologies/d
99
| Input Name | Default Value | Description |
1010
|-----------------------|--------------:|-----------------------------------------------------------------|
1111
| `website` | `oracle.com` | From where the JDK should be downloaded from. |
12-
| `release` | `18` | Java feature release number or name of an Early-Access project. |
12+
| `release` | `19` | Java feature release number or name of an Early-Access project. |
1313
| `version` | `latest` | An explicit version of a Java release. |
1414
| `install` | `true` | Install the downloaded JDK archive file. |
1515
| `install-as-version` | _empty_ | Control the value passed as `java-version` |
@@ -35,7 +35,7 @@ Following values are supported:
3535
### Input `release`
3636

3737
The `release` input denotes a Java feature release number (`17`, `18`, ...) or a name of an Early-Access project (`loom`, ...).
38-
It defaults to the current General-Availability Release for the Java SE platform., which is `18` as of today.
38+
It defaults to the current General-Availability Release for the Java SE platform., which is `19` as of today.
3939

4040
Note that websites may offer a different set of available releases.
4141
For example, `oracle.com` only offers releases of `17` and above; it does not offer any Early-Access releases.

action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ inputs:
1111
required: true
1212
default: 'oracle.com'
1313
release:
14-
description: 'Feature release number or project name, defaults to `18`'
14+
description: 'Feature release number or project name, defaults to `19`'
1515
required: true
16-
default: '18'
16+
default: '19'
1717
version:
1818
description: 'Additional version information, defaults to `latest`'
1919
required: true

src/ListOpenJavaDevelopmentKits.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,13 +39,13 @@
3939
class ListOpenJavaDevelopmentKits {
4040

4141
/** Current General-Availability release number. */
42-
static final String GA = System.getProperty("GA", "18");
42+
static final String GA = System.getProperty("GA", "19");
4343

4444
/** Current Soon-Archived release number. */
45-
static final String SA = System.getProperty("SA", "17");
45+
static final String SA = System.getProperty("SA", "18");
4646

4747
/** Early-Access Releases, as comma separated names. */
48-
static final String EA = System.getProperty("EA", "20,19,jextract,loom,metropolis,panama,valhalla");
48+
static final String EA = System.getProperty("EA", "20,jextract,loom,metropolis,panama,valhalla");
4949

5050
/** Include archived releases flag. */
5151
static final boolean ARCHIVES = Boolean.getBoolean("ARCHIVES");

0 commit comments

Comments
 (0)