Skip to content
Compare
Choose a tag to compare
@dmitry-shibanov dmitry-shibanov released this 08 Sep 13:59
· 101 commits to main since this release
d854b6d

Add support for multiple jdks

In scope of this release we add support for multiple jdks. Customers can specify multiple versions of java through java-version input.

    steps:
      - uses: actions/setup-java@v3
        with:
          distribution: '<distribution>'
          java-version: |
            8
            11
            15

Besides, we added such changes as:

  • Removed restore-keys because it leaded to an unexpected growth of the cache: #285
  • Added new files pattern for gradle cache: #274
  • Added cache-hit output to the action.yml: #373