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 | +| `java-version`
*(required)* | n/a | Java version | | `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() }