Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 868
Chore: Version Update and Checkout Update to v6#973
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Uh oh!
There was an error while loading. Please reload this page.
Jump to
Uh oh!
There was an error while loading. Please reload this page.
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -31,7 +31,7 @@ Inputs `java-version` and `distribution` are mandatory and needs to be provided. | ||
| ```yaml | ||
| steps: | ||
| - uses: actions/checkout@v5 | ||
| - uses: actions/checkout@v6 | ||
mahabaleshwars marked this conversation as resolved.
Uh oh!There was an error while loading. Please reload this page. | ||
| - uses: actions/setup-java@v5 | ||
| with: | ||
| distribution: 'temurin' | ||
| @@ -44,7 +44,7 @@ steps: | ||
| ```yaml | ||
| steps: | ||
| - uses: actions/checkout@v5 | ||
| - uses: actions/checkout@v6 | ||
| - uses: actions/setup-java@v5 | ||
| with: | ||
| distribution: 'adopt-hotspot' | ||
| @@ -56,7 +56,7 @@ steps: | ||
| ```yaml | ||
| steps: | ||
| - uses: actions/checkout@v5 | ||
| - uses: actions/checkout@v6 | ||
| - uses: actions/setup-java@v5 | ||
| with: | ||
| distribution: 'zulu' | ||
| @@ -69,7 +69,7 @@ steps: | ||
| ```yaml | ||
| steps: | ||
| - uses: actions/checkout@v5 | ||
| - uses: actions/checkout@v6 | ||
| - uses: actions/setup-java@v5 | ||
| with: | ||
| distribution: 'liberica' | ||
| @@ -82,7 +82,7 @@ steps: | ||
| ```yaml | ||
| steps: | ||
| - uses: actions/checkout@v5 | ||
| - uses: actions/checkout@v6 | ||
| - uses: actions/setup-java@v5 | ||
| with: | ||
| distribution: 'microsoft' | ||
| @@ -111,7 +111,7 @@ If the runner is not able to access github.com, any Java versions requested duri | ||
| ```yaml | ||
| steps: | ||
| - uses: actions/checkout@v5 | ||
| - uses: actions/checkout@v6 | ||
| - uses: actions/setup-java@v5 | ||
| with: | ||
| distribution: 'corretto' | ||
| @@ -124,7 +124,7 @@ steps: | ||
| ```yaml | ||
| steps: | ||
| - uses: actions/checkout@v5 | ||
| - uses: actions/checkout@v6 | ||
| - uses: actions/setup-java@v5 | ||
| with: | ||
| distribution: 'oracle' | ||
| @@ -137,7 +137,7 @@ steps: | ||
| ```yaml | ||
| steps: | ||
| - uses: actions/checkout@v5 | ||
| - uses: actions/checkout@v6 | ||
| - uses: actions/setup-java@v5 | ||
| with: | ||
| distribution: 'dragonwell' | ||
| @@ -149,7 +149,7 @@ steps: | ||
| **NOTE:** An OpenJDK release maintained and supported by SAP | ||
| ```yaml | ||
| steps: | ||
| - uses: actions/checkout@v5 | ||
| - uses: actions/checkout@v6 | ||
| - uses: actions/setup-java@v5 | ||
| with: | ||
| distribution: 'sapmachine' | ||
| @@ -162,7 +162,7 @@ steps: | ||
| ```yaml | ||
| steps: | ||
| - uses: actions/checkout@v5 | ||
| - uses: actions/checkout@v6 | ||
| - uses: actions/setup-java@v5 | ||
| with: | ||
| distribution: 'graalvm' | ||
| @@ -181,7 +181,7 @@ For example, `11.0.24` is not available but `11.0.16` is. | ||
| ```yaml | ||
| steps: | ||
| - uses: actions/checkout@v5 | ||
| - uses: actions/checkout@v6 | ||
| - uses: actions/setup-java@v5 | ||
| with: | ||
| distribution: 'jetbrains' | ||
| @@ -194,7 +194,7 @@ GitHub token to the action to increase the rate limit. Set the `GITHUB_TOKEN` en | ||
| ```yaml | ||
| steps: | ||
| - uses: actions/checkout@v5 | ||
| - uses: actions/checkout@v6 | ||
| - uses: actions/setup-java@v5 | ||
| with: | ||
| distribution: 'jetbrains' | ||
| @@ -219,7 +219,7 @@ The available package types are: | ||
| ## Installing custom Java package type | ||
| ```yaml | ||
| steps: | ||
| - uses: actions/checkout@v5 | ||
| - uses: actions/checkout@v6 | ||
| - uses: actions/setup-java@v5 | ||
| with: | ||
| distribution: '<distribution>' | ||
| @@ -232,7 +232,7 @@ steps: | ||
| ```yaml | ||
| steps: | ||
| - uses: actions/checkout@v5 | ||
| - uses: actions/checkout@v6 | ||
| - uses: actions/setup-java@v5 | ||
| with: | ||
| distribution: '<distribution>' | ||
| @@ -296,7 +296,7 @@ jobs: | ||
| java: [ '8', '11' ] | ||
| name: Java ${{ matrix.Java }} (${{ matrix.distribution }}) sample | ||
| steps: | ||
| - uses: actions/checkout@v5 | ||
| - uses: actions/checkout@v6 | ||
| - name: Setup java | ||
| uses: actions/setup-java@v5 | ||
| with: | ||
| @@ -316,7 +316,7 @@ jobs: | ||
| os: [ 'ubuntu-latest', 'macos-latest', 'windows-latest' ] | ||
| name: Java ${{ matrix.Java }} (${{ matrix.os }}) sample | ||
| steps: | ||
| - uses: actions/checkout@v5 | ||
| - uses: actions/checkout@v6 | ||
| - name: Setup java | ||
| uses: actions/setup-java@v5 | ||
| with: | ||
| @@ -333,7 +333,7 @@ jobs: | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - uses: actions/checkout@v5 | ||
| - uses: actions/checkout@v6 | ||
| - name: Set up JDK 11 | ||
| uses: actions/setup-java@v5 | ||
| with: | ||
| @@ -446,7 +446,7 @@ jobs: | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - uses: actions/checkout@v5 | ||
| - uses: actions/checkout@v6 | ||
| - name: Set up JDK 11 for Shared Runner | ||
| uses: actions/setup-java@v5 | ||
| with: | ||
| @@ -472,7 +472,7 @@ jobs: | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - uses: actions/checkout@v5 | ||
| - uses: actions/checkout@v6 | ||
| - name: Set up JDK 11 | ||
| uses: actions/setup-java@v5 | ||
| @@ -574,7 +574,7 @@ Each JDK provider will receive a default `id` based on the combination of `distr | ||
| ```yaml | ||
| steps: | ||
| - uses: actions/checkout@v5 | ||
| - uses: actions/checkout@v6 | ||
| - uses: actions/setup-java@v5 | ||
| with: | ||
| distribution: 'temurin' | ||
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.