Skip to content

Commit

Permalink
Make Java 17 default
Browse files Browse the repository at this point in the history
  • Loading branch information
mkurz committed Feb 28, 2024
1 parent 372f672 commit a48a7ce
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/binary-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
java:
type: string
required: false
default: 11
default: 17
java-index:
type: string
required: false
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cmd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
java:
type: string
required: false
default: "11"
default: "17"
java-index:
type: string
required: false
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
java:
type: string
required: false
default: 11
default: 17
java-index:
type: string
required: false
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ Every matrix dimension will be access by environment variable like `MATRIX_$(upp
|------------------------------|-------|--------------------|---------|-------------------------------------------------|
| ref | 2.0.0 | :heavy_minus_sign: | '' | Branch, tag or SHA for checkout |
| cmd | 2.0.0 | :exclamation: | - | Running command |
| java | 2.0.0 | :heavy_minus_sign: | 11 | _AdoptJDK_ version (space/comma delimited list) |
| java | 2.0.0 | :heavy_minus_sign: | 17 | _AdoptJDK_ version (space/comma delimited list) |
| java-index | 3.3.1 | :heavy_minus_sign: | '' | URL to JVM index source file |
| scala | 2.0.0 | :heavy_minus_sign: | '' | _Scala_ version (space/comma delimited list) |
| add-dimensions | 2.0.0 | :heavy_minus_sign: | '' | Other matrix dimensions (json object) |
Expand All @@ -66,9 +66,9 @@ Every matrix dimension will be access by environment variable like `MATRIX_$(upp
```yaml
uses: playframework/.github/.github/workflows/cmd.yml@v3
with:
java: 17, 11
java: 17, 21
java-index: https://url/of/your/index.json
scala: 2.12.18, 2.13.12, 3.3.1
scala: 2.12.19, 2.13.13, 3.3.1
add-dimensions: >-
{
"color": [ "red", "green"]
Expand Down Expand Up @@ -97,7 +97,7 @@ This workflow is used for publishing snapshots artifacts to [Sonatype Snapshots]
| Parameter | Since | Required | Default | Description |
|---------------------------|-------|--------------------|----------------|------------------------------------------|
| ref | 2.0.0 | :heavy_minus_sign: | '' | Branch, tag or SHA for checkout |
| java | 1.0.0 | :heavy_minus_sign: | 11 | _AdoptJDK_ version |
| java | 1.0.0 | :heavy_minus_sign: | 17 | _AdoptJDK_ version |
| java-index | 3.3.1 | :heavy_minus_sign: | '' | URL to JVM index source file |
| cmd | 3.3.0 | :heavy_minus_sign: | sbt ci-release | Running command |
| gradle-build-root | 3.3.0 | :heavy_minus_sign: | '' | Directory for Gradle builds |
Expand Down Expand Up @@ -129,7 +129,7 @@ This workflow is used for validate binary compatibility the current version.
| Parameter | Since | Required | Default | Description |
|---------------------------|-------|--------------------|---------|------------------------------------------|
| ref | 2.0.0 | :heavy_minus_sign: | '' | Branch, tag or SHA for checkout |
| java | 1.0.0 | :heavy_minus_sign: | 11 | _AdoptJDK_ version |
| java | 1.0.0 | :heavy_minus_sign: | 17 | _AdoptJDK_ version |
| java-index | 3.3.1 | :heavy_minus_sign: | '' | URL to JVM index source file |
| run-scheduled-in-forks | 3.1.1 | :heavy_minus_sign: | false | Run by schedule in fork |
| ignore-job-coursier-cache | 3.4.0 | :heavy_minus_sign: | true | `ignoreJob` parameter for Coursier Cache |
Expand Down

0 comments on commit a48a7ce

Please sign in to comment.