diff --git a/README.md b/README.md index 1939895..d6a729d 100644 --- a/README.md +++ b/README.md @@ -29,7 +29,7 @@ jobs: - uses: actions/checkout@v4 - uses: graalvm/setup-graalvm@v1 with: - java-version: '21' # See 'Options' for more details + java-version: '25' # See 'Options' for more details distribution: 'graalvm' # See 'Supported distributions' for available options github-token: ${{ secrets.GITHUB_TOKEN }} - name: Example step @@ -61,7 +61,7 @@ jobs: - uses: graalvm/setup-graalvm@v1 with: - java-version: '21' + java-version: '25' distribution: 'graalvm' github-token: ${{ secrets.GITHUB_TOKEN }} native-image-job-reports: 'true' @@ -92,7 +92,7 @@ jobs: - uses: actions/checkout@v4 - uses: graalvm/setup-graalvm@v1 with: - java-version: '24-ea' # or 'latest-ea' for the latest Java version available + java-version: '26-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. |