diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 5da443a..a55171d 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -61,7 +61,7 @@ jobs:
- java-version: 'latest-ea'
distribution: 'graalvm'
os: ubuntu-latest
- - java-version: '25-ea'
+ - java-version: '25e1-ea'
distribution: 'graalvm'
os: ubuntu-latest
- java-version: '21'
diff --git a/README.md b/README.md
index d6a729d..a7230a7 100644
--- a/README.md
+++ b/README.md
@@ -92,7 +92,7 @@ jobs:
- uses: actions/checkout@v4
- uses: graalvm/setup-graalvm@v1
with:
- java-version: '26-ea' # or 'latest-ea' for the latest Java version available
+ java-version: '25e1-ea' # or 'latest-ea' for the latest Java version available
distribution: 'graalvm'
github-token: ${{ secrets.GITHUB_TOKEN }}
```
@@ -194,7 +194,7 @@ This actions can be configured with the following options:
| Name | Default | Description |
|-----------------|:--------:|-------------|
-| `java-version`
*(required)* | n/a | Java version
- major versions: `'25'`, `'21'`, `'17'`, `'11'`, `'8'`
- specific versions: `'21.0.3'`, `'17.0.11'`
- early access (EA) builds: `'26-ea'` *(requires `distribution: 'graalvm'`)*
- latest EA build: `'latest-ea'` *(requires `distribution: 'graalvm'`)*
- dev builds: `'dev'`
|
+| `java-version`
*(required)* | n/a | Java version - major versions: `'25'`, `'21'`, `'17'`, `'11'`, `'8'`
- specific versions: `'21.0.3'`, `'17.0.11'`
- early access (EA) builds: `'25e1-ea'` *(requires `distribution: 'graalvm'`)*
- latest EA build: `'latest-ea'` *(requires `distribution: 'graalvm'`)*
- dev builds: `'dev'` *(requires `distribution: 'graalvm-community'`)*
|
| `distribution` | `'graalvm'` | GraalVM distribution (see [supported distributions](#supported-distributions)) |
| `java-package` | `'jdk'` | The package type (`'jdk'` or `'jdk+fx'`). Currently applies to Liberica only. |
| `github-token` | `'${{ github.token }}'` | Token for communication with the GitHub API. Please set this to `${{ secrets.GITHUB_TOKEN }}` (see [templates](#templates)) to allow the action to authenticate with the GitHub API, which helps reduce rate-limiting issues. |
diff --git a/__tests__/sbom.test.ts b/__tests__/sbom.test.ts
index b450a8a..3d14d76 100644
--- a/__tests__/sbom.test.ts
+++ b/__tests__/sbom.test.ts
@@ -92,7 +92,7 @@ describe('sbom feature', () => {
})
it('should not throw an error when the java-version is supported', () => {
- const supported_versions = ['25', '26-ea', 'latest-ea']
+ const supported_versions = ['25', '25e1-ea', 'latest-ea']
for (const version of supported_versions) {
expect(() => setUpSBOMSupport(version, distribution)).not.toThrow()
}