dependabot[bot] opened a new pull request #36:
URL: https://github.com/apache/commons-build-plugin/pull/36


   Bumps [actions/setup-java](https://github.com/actions/setup-java) from 1.4.3 
to 2.1.0.
   <details>
   <summary>Release notes</summary>
   <p><em>Sourced from <a 
href="https://github.com/actions/setup-java/releases";>actions/setup-java's 
releases</a>.</em></p>
   <blockquote>
   <h2>v2.1.0</h2>
   <p>Add support for Adopt OpenJDK OpenJ9:</p>
   <h4>Supported distributions</h4>
   <p>Currently, the following distributions are supported:</p>
   <table>
   <thead>
   <tr>
   <th>Keyword</th>
   <th>Distribution</th>
   <th>Official site</th>
   <th>License</th>
   </tr>
   </thead>
   <tbody>
   <tr>
   <td><code>zulu</code></td>
   <td>Zulu OpenJDK</td>
   <td><a 
href="https://www.azul.com/downloads/zulu-community/?package=jdk";>Link</a></td>
   <td><a 
href="https://www.azul.com/products/zulu-and-zulu-enterprise/zulu-terms-of-use/";>Link</a></td>
   </tr>
   <tr>
   <td><code>adopt</code> or <code>adopt-hotspot</code></td>
   <td>Adopt OpenJDK Hotspot</td>
   <td><a href="https://adoptopenjdk.net/";>Link</a></td>
   <td><a href="https://adoptopenjdk.net/about.html";>Link</a></td>
   </tr>
   <tr>
   <td><code>adopt-openj9</code></td>
   <td>Adopt OpenJDK OpenJ9</td>
   <td><a href="https://adoptopenjdk.net/";>Link</a></td>
   <td><a href="https://adoptopenjdk.net/about.html";>Link</a></td>
   </tr>
   </tbody>
   </table>
   <h2>v2.0.0</h2>
   <h1>The major release actions/setup-java@v2</h1>
   <p>See more details in <a 
href="https://github.com/actions/setup-java/blob/main/README.md";>README 
file</a>.</p>
   <p>This action provides the following functionality for GitHub Actions 
runners:</p>
   <ul>
   <li>Downloading and setting up a requested version of Java. See <a 
href="https://github.com/actions/setup-java/blob/HEAD/#Usage";>Usage</a> for a 
list of supported distributions</li>
   <li>Extracting and caching custom version of Java from a local file</li>
   <li>Configuring runner for publishing using Apache Maven</li>
   <li>Configuring runner for publishing using Gradle</li>
   <li>Configuring runner for using GPG private key</li>
   <li>Registering problem matchers for error output</li>
   </ul>
   <h2>V2 vs V1</h2>
   <ul>
   <li>V2 supports custom distributions and provides support for Zulu OpenJDK 
and Adopt OpenJDK out of the box. V1 supports only Zulu OpenJDK</li>
   <li>V2 requires you to specify distribution along with the version. V1 
defaults to Zulu OpenJDK, only version input is required. Follow <a 
href="https://github.com/actions/setup-java/blob/HEAD/docs/switching-to-v2.md";>the
 migration guide</a> to switch from V1 to V2</li>
   </ul>
   <h2>Usage</h2>
   <p>Inputs <code>java-version</code> and <code>distribution</code> are 
mandatory. See <a 
href="https://github.com/actions/setup-java/blob/README.md#Supported-distributions";>Supported
 distributions</a> section for a list of available options.</p>
   <h3>Basic</h3>
   <p><strong>Adopt OpenJDK</strong></p>
   <pre lang="yaml"><code>steps:
   - uses: actions/checkout@v2
   - uses: actions/setup-java@v2
     with:
       distribution: 'adopt' # See 'Supported distributions' for available 
options
       java-version: '11'
   - run: java -cp java HelloWorldApp
   </code></pre>
   <p><strong>Zulu OpenJDK</strong></p>
   <pre lang="yaml"><code>steps:
   - uses: actions/checkout@v2
   - uses: actions/setup-java@v2
     with:
       distribution: 'zulu' # See 'Supported distributions' for available 
options
       java-version: '11'
   &lt;/tr&gt;&lt;/table&gt; 
   </code></pre>
   </blockquote>
   <p>... (truncated)</p>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/actions/setup-java/commit/d9126d7df2f1b080b603441eaf5810ced3614e78";><code>d9126d7</code></a>
 Bump hosted-git-info from 2.8.8 to 2.8.9 (<a 
href="https://github-redirect.dependabot.com/actions/setup-java/issues/178";>#178</a>)</li>
   <li><a 
href="https://github.com/actions/setup-java/commit/53ac717e09ee911c7c5ac6b51f670384756dafbc";><code>53ac717</code></a>
 Improve README and advanced usage guide (<a 
href="https://github-redirect.dependabot.com/actions/setup-java/issues/174";>#174</a>)</li>
   <li><a 
href="https://github.com/actions/setup-java/commit/cbc183b1c1042817f9819d15402b42b38bf7b7b9";><code>cbc183b</code></a>
 Added 'adopt-hotspot' and 'adopt-openj9' (<a 
href="https://github-redirect.dependabot.com/actions/setup-java/issues/155";>#155</a>)</li>
   <li><a 
href="https://github.com/actions/setup-java/commit/0443912ed73df2ee8596160daba017daab1c8ca9";><code>0443912</code></a>
 Fix typo in documentation &quot;jdkfile&quot; (<a 
href="https://github-redirect.dependabot.com/actions/setup-java/issues/167";>#167</a>)</li>
   <li><a 
href="https://github.com/actions/setup-java/commit/56b2808da7b1e33196293b0b9709698c7b2b8199";><code>56b2808</code></a>
 Fix typo on distribution &quot;jdkfile&quot; (<a 
href="https://github-redirect.dependabot.com/actions/setup-java/issues/163";>#163</a>)</li>
   <li><a 
href="https://github.com/actions/setup-java/commit/00401c44888c9399df79fa4c83ebb874ecc3d04c";><code>00401c4</code></a>
 add cron for e2e tests, twice a day (<a 
href="https://github-redirect.dependabot.com/actions/setup-java/issues/162";>#162</a>)</li>
   <li><a 
href="https://github.com/actions/setup-java/commit/1e063f2878e6facb4a1c1348a20a57e1484cc3ef";><code>1e063f2</code></a>
 Fix navigation issue of supported distributions (<a 
href="https://github-redirect.dependabot.com/actions/setup-java/issues/153";>#153</a>)</li>
   <li><a 
href="https://github.com/actions/setup-java/commit/8764a52df183aa0ccea74521dfd9d506ffc7a19a";><code>8764a52</code></a>
 Rename v2-preview to v2 in docs and tests (<a 
href="https://github-redirect.dependabot.com/actions/setup-java/issues/151";>#151</a>)</li>
   <li><a 
href="https://github.com/actions/setup-java/commit/b53500dabc37db6cc1dcd35059bdcd85df25d140";><code>b53500d</code></a>
 Merge &quot;v2-preview&quot; branch into &quot;main&quot; (<a 
href="https://github-redirect.dependabot.com/actions/setup-java/issues/150";>#150</a>)</li>
   <li><a 
href="https://github.com/actions/setup-java/commit/ebb424f2cb8fcb418a7b62a00e052ee78fc9ed68";><code>ebb424f</code></a>
 Beatify &quot;main&quot; warning about breaking changes (<a 
href="https://github-redirect.dependabot.com/actions/setup-java/issues/144";>#144</a>)</li>
   <li>Additional commits viewable in <a 
href="https://github.com/actions/setup-java/compare/v1.4.3...v2.1.0";>compare 
view</a></li>
   </ul>
   </details>
   <br />
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=actions/setup-java&package-manager=github_actions&previous-version=1.4.3&new-version=2.1.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
   
   Dependabot will resolve any conflicts with this PR as long as you don't 
alter it yourself. You can also trigger a rebase manually by commenting 
`@dependabot rebase`.
   
   [//]: # (dependabot-automerge-start)
   [//]: # (dependabot-automerge-end)
   
   ---
   
   <details>
   <summary>Dependabot commands and options</summary>
   <br />
   
   You can trigger Dependabot actions by commenting on this PR:
   - `@dependabot rebase` will rebase this PR
   - `@dependabot recreate` will recreate this PR, overwriting any edits that 
have been made to it
   - `@dependabot merge` will merge this PR after your CI passes on it
   - `@dependabot squash and merge` will squash and merge this PR after your CI 
passes on it
   - `@dependabot cancel merge` will cancel a previously requested merge and 
block automerging
   - `@dependabot reopen` will reopen this PR if it is closed
   - `@dependabot close` will close this PR and stop Dependabot recreating it. 
You can achieve the same result by closing it manually
   - `@dependabot ignore this major version` will close this PR and stop 
Dependabot creating any more for this major version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this minor version` will close this PR and stop 
Dependabot creating any more for this minor version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this dependency` will close this PR and stop 
Dependabot creating any more for this dependency (unless you reopen the PR or 
upgrade to it yourself)
   
   
   </details>


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


Reply via email to