Open renovate[bot] opened 3 years ago
This PR contains the following updates:
v2.1.0
v2.3.0
📅 Schedule: At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR has been generated by WhiteSource Renovate. View repository job log here.
This PR contains the following updates:
v2.1.0
->v2.3.0
Release Notes
actions/setup-java
### [`v2.3.0`](https://togithub.com/actions/setup-java/releases/v2.3.0) [Compare Source](https://togithub.com/actions/setup-java/compare/v2.2.0...v2.3.0) This release introduces dependency caching support ([#193](https://togithub.com/actions/setup-java/issues/193)). Now the action has a built-in functionality for caching and restoring dependencies. Supported package managers are Maven and Gradle. The `cache` input is optional, and caching is turned off by default. ##### Caching gradle dependencies ```yaml steps: - uses: actions/checkout@v2 - uses: actions/setup-java@v2 with: distribution: 'temurin' java-version: '11' cache: 'gradle' - run: ./gradlew build ``` ##### Caching maven dependencies ```yaml steps: - uses: actions/checkout@v2 - uses: actions/setup-java@v2 with: distribution: 'temurin' java-version: '11' cache: 'maven' - name: Build with Maven run: mvn -B package --file pom.xml ``` ### [`v2.2.0`](https://togithub.com/actions/setup-java/releases/v2.2.0) [Compare Source](https://togithub.com/actions/setup-java/compare/v2.1.0...v2.2.0) Add support for Eclipse Temurin ([#201](https://togithub.com/actions/setup-java/issues/201)). ##### Supported distributions Currently, the following distributions are supported: | Keyword | Distribution | Official site | License | |-|-|-|-| | `zulu` | Zulu OpenJDK | [Link](https://www.azul.com/downloads/zulu-community/?package=jdk) | [Link](https://www.azul.com/products/zulu-and-zulu-enterprise/zulu-terms-of-use/) | | `adopt` or `adopt-hotspot` | Adopt OpenJDK Hotspot | [Link](https://adoptopenjdk.net/) | [Link](https://adoptopenjdk.net/about.html) | `adopt-openj9` | Adopt OpenJDK OpenJ9 | [Link](https://adoptopenjdk.net/) | [Link](https://adoptopenjdk.net/about.html) | `temurin` | Eclipse Temurin | [Link](https://adoptium.net/) | [Link](https://adoptium.net/about.html)Configuration
📅 Schedule: At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR has been generated by WhiteSource Renovate. View repository job log here.