You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@daffodil.apache.org by GitBox <gi...@apache.org> on 2021/08/23 19:12:50 UTC

[GitHub] [daffodil] dependabot[bot] opened a new pull request #626: Bump actions/setup-java from 2.2.0 to 2.3.0

dependabot[bot] opened a new pull request #626:
URL: https://github.com/apache/daffodil/pull/626


   Bumps [actions/setup-java](https://github.com/actions/setup-java) from 2.2.0 to 2.3.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.3.0</h2>
   <p>This release introduces dependency caching support (<a href="https://github-redirect.dependabot.com/actions/setup-java/issues/193">#193</a>).</p>
   <p>Now the action has a built-in functionality for caching and restoring dependencies. Supported package managers are Maven and Gradle. The <code>cache</code> input is optional, and caching is turned off by default.</p>
   <h4>Caching gradle dependencies</h4>
   <pre lang="yaml"><code>steps:
   - uses: actions/checkout@v2
   - uses: actions/setup-java@v2
     with:
       distribution: 'temurin'
       java-version: '11'
       cache: 'gradle'
   - run: ./gradlew build
   </code></pre>
   <h4>Caching maven dependencies</h4>
   <pre lang="yaml"><code>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
   </code></pre>
   </blockquote>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a href="https://github.com/actions/setup-java/commit/3bc31aaf88e8fc94dc1e632d48af61be5ca8721c"><code>3bc31aa</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/actions/setup-java/issues/210">#210</a> from dmitry-shibanov/v-dmshib/suppress-test-log-output</li>
   <li><a href="https://github.com/actions/setup-java/commit/30cd52e29bb0a368d0d5ded2052280264ae4231f"><code>30cd52e</code></a> fix warning output in cleanup-java</li>
   <li><a href="https://github.com/actions/setup-java/commit/2e40ee8132bd3d4f60cc982ebb4e8a27669788f9"><code>2e40ee8</code></a> suppress tests log output</li>
   <li><a href="https://github.com/actions/setup-java/commit/c21fb9392db8339ec9bc77ac571cd56a23b77fa4"><code>c21fb93</code></a> Update readme and test matrix (<a href="https://github-redirect.dependabot.com/actions/setup-java/issues/209">#209</a>)</li>
   <li><a href="https://github.com/actions/setup-java/commit/08e4e813b8cd5742f122bc8788bd77b3b392aeb9"><code>08e4e81</code></a> Introduce the dependency caching for Maven and Gradle (<a href="https://github-redirect.dependabot.com/actions/setup-java/issues/193">#193</a>)</li>
   <li>See full diff in <a href="https://github.com/actions/setup-java/compare/v2.2.0...v2.3.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=2.2.0&new-version=2.3.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.

To unsubscribe, e-mail: commits-unsubscribe@daffodil.apache.org

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



[GitHub] [daffodil] stevedlawrence commented on pull request #626: Bump actions/setup-java from 2.2.0 to 2.3.0

Posted by GitBox <gi...@apache.org>.
stevedlawrence commented on pull request #626:
URL: https://github.com/apache/daffodil/pull/626#issuecomment-904558654


    +1
      
    - [X] **Do all automated continuous integration checks pass?**
    Yes
   - [X] **Is the update a patch, minor, or major update?**
    Minor update, just adds caching support for maven and gradle, which don't apply to our sbt-base build
    - [X] **Is the license still compatible with ASF License Policy?**
    Yes, still MIT.
    - [X] **Have any changes been made to LICENSE/NOTICE files that need to be incorporated?**
    No changes
    - [X] **Have any transitive dependencies been added or changed?**
    Not applicable


-- 
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.

To unsubscribe, e-mail: commits-unsubscribe@daffodil.apache.org

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



[GitHub] [daffodil] tuxji merged pull request #626: Bump actions/setup-java from 2.2.0 to 2.3.0

Posted by GitBox <gi...@apache.org>.
tuxji merged pull request #626:
URL: https://github.com/apache/daffodil/pull/626


   


-- 
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.

To unsubscribe, e-mail: commits-unsubscribe@daffodil.apache.org

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