Skip to content

Commit

Permalink
chore(deps): update actions/setup-java action to v3.7.0 (#187)
Browse files Browse the repository at this point in the history
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [actions/setup-java](https://togithub.com/actions/setup-java) | action
| minor | `v3.6.0` -> `v3.7.0` |

---

### Release Notes

<details>
<summary>actions/setup-java</summary>

###
[`v3.7.0`](https://togithub.com/actions/setup-java/releases/tag/v3.7.0)

[Compare
Source](https://togithub.com/actions/setup-java/compare/v3.6.0...v3.7.0)

In scope of this release we added support for Oracle JDK
([actions/setup-java#401).
Besides, we added logic to Pass the token input through on GHES for
Microsoft Build of OpenJDK
([actions/setup-java#395)
and updated
[minimatch](https://togithub.com/actions/setup-java/pull/413)
dependency.

```yaml
steps:
  - name: Checkout
    uses: actions/checkout@v3
  - name: Setup-java
    uses: actions/setup-java@v3
    with:
      distribution: oracle
      java-version: 17
```

##### Supported distributions

Currently, the following distributions are supported:

| Keyword | Distribution | Official site | License
|-|-|-|-|
| `temurin` | Eclipse Temurin | [Link](https://adoptium.net/) |
[Link](https://adoptium.net/about.html)
| `zulu` | Azul 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` | AdoptOpenJDK Hotspot |
[Link](https://adoptopenjdk.net/) |
[Link](https://adoptopenjdk.net/about.html) |
| `adopt-openj9` | AdoptOpenJDK OpenJ9 |
[Link](https://adoptopenjdk.net/) |
[Link](https://adoptopenjdk.net/about.html) |
| `liberica` | Liberica JDK | [Link](https://bell-sw.com/) |
[Link](https://bell-sw.com/liberica_eula/) |
| `microsoft` | Microsoft Build of OpenJDK |
[Link](https://www.microsoft.com/openjdk) |
[Link](https://docs.microsoft.com/java/openjdk/faq)
| `corretto` | Amazon Corretto Build of OpenJDK |
[Link](https://aws.amazon.com/corretto/) |
[Link](https://aws.amazon.com/corretto/faqs/)
| `oracle` | Oracle JDK |
[Link](https://www.oracle.com/java/technologies/downloads/) |
[Link](https://java.com/freeuselicense)

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - 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.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://app.renovatebot.com/dashboard#github/Yash-Garg/qBittorrent-Manager).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNC40NC4wIiwidXBkYXRlZEluVmVyIjoiMzQuNDQuMCJ9-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
  • Loading branch information
renovate[bot] committed Dec 1, 2022
1 parent 7877d1b commit e3415cb
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/develop_ci.yml
Expand Up @@ -29,7 +29,7 @@ jobs:
run: chmod +x ./gradlew

- name: Set up JDK
uses: actions/setup-java@v3.6.0
uses: actions/setup-java@v3.7.0
with:
distribution: "zulu"
java-version: "11"
Expand All @@ -56,7 +56,7 @@ jobs:
run: chmod +x ./gradlew

- name: Set up JDK
uses: actions/setup-java@v3.6.0
uses: actions/setup-java@v3.7.0
with:
distribution: "zulu"
java-version: "11"
Expand Down Expand Up @@ -98,7 +98,7 @@ jobs:
run: chmod +x ./gradlew

- name: Set up JDK
uses: actions/setup-java@v3.6.0
uses: actions/setup-java@v3.7.0
with:
distribution: "zulu"
java-version: "11"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pr_ci.yml
Expand Up @@ -23,7 +23,7 @@ jobs:
run: chmod +x ./gradlew

- name: Set up JDK
uses: actions/setup-java@v3.6.0
uses: actions/setup-java@v3.7.0
with:
distribution: "zulu"
java-version: "11"
Expand All @@ -50,7 +50,7 @@ jobs:
run: chmod +x ./gradlew

- name: Set up JDK
uses: actions/setup-java@v3.6.0
uses: actions/setup-java@v3.7.0
with:
distribution: "zulu"
java-version: "11"
Expand Down

0 comments on commit e3415cb

Please sign in to comment.