Skip to content

Update actions/setup-java action to v3.14.1#13

Open
renovate[bot] wants to merge 1 commit intomainfrom
renovate/actions-setup-java-3.x
Open

Update actions/setup-java action to v3.14.1#13
renovate[bot] wants to merge 1 commit intomainfrom
renovate/actions-setup-java-3.x

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate bot commented Jun 21, 2022

This PR contains the following updates:

Package Type Update Change
actions/setup-java action minor v3.3.0v3.14.1

Release Notes

actions/setup-java (actions/setup-java)

v3.14.1

Compare Source

What's Changed

Full Changelog: actions/setup-java@v3...v3.14.1

v3.14.0

Compare Source

What's Changed

  • Upgrade @​action/cache to 4.0.3 by @​aparnajyothi-y in #​790.
    In scope of this release we updated actions/cache package to ensure continued support and compatibility, as older versions of the package are now deprecated. For more information please refer to the toolkit/cache.

Full Changelog: actions/setup-java@v3...v3.14.0

v3.13.0

Compare Source

What's changed

In the scope of this release, support for Dragonwell JDK was added by @​Accelerator1996 in #​532

steps:
 - name: Checkout
   uses: actions/checkout@v3
 - name: Setup-java
   uses: actions/setup-java@v3
   with:
     distribution: 'dragonwell'
     java-version: '17'

Several inaccuracies were also fixed:

New Contributors

Full Changelog: actions/setup-java@v3...v3.13.0

v3.12.0

Compare Source

In scope of this release the following changes were made:

Bug fixes:

Feature implementations:

Resolving dependencies issues:

Infrastructure updates:

Documentation changes:

New Contributors

Full Changelog: actions/setup-java@v3...v3.12.0

v3.11.0

Compare Source

In scope of this release we added support for IBM Semeru (OpenJ9) JDK (#​289).

steps:
 - name: Checkout
   uses: actions/checkout@v3
 - name: Setup-java
   uses: actions/setup-java@v3
   with:
     distribution: semeru
     java-version: 17
Supported distributions

Currently, the following distributions are supported:

Keyword Distribution Official site License
temurin Eclipse Temurin Link Link
zulu Azul Zulu OpenJDK Link Link
adopt or adopt-hotspot AdoptOpenJDK Hotspot Link Link
adopt-openj9 AdoptOpenJDK OpenJ9 Link Link
liberica Liberica JDK Link Link
microsoft Microsoft Build of OpenJDK Link Link
corretto Amazon Corretto Build of OpenJDK Link Link
semeru IBM Semeru Runtime Open Edition Link Link
oracle Oracle JDK Link Link

v3.10.0

Compare Source

In scope of this release we added support for Oracle JDK (#​450).

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 Link
zulu Azul Zulu OpenJDK Link Link
adopt or adopt-hotspot AdoptOpenJDK Hotspot Link Link
adopt-openj9 AdoptOpenJDK OpenJ9 Link Link
liberica Liberica JDK Link Link
microsoft Microsoft Build of OpenJDK Link Link
corretto Amazon Corretto Build of OpenJDK Link Link
oracle Oracle JDK Link Link

v3.9.0

Compare Source

In scope of this release we add support for .java-version file (#​426). For more information about its usage please refer to the documentation.

    steps:
      - uses: actions/checkout@v3
      - name: Setup java
        uses: actions/setup-java@v3
        with:
          distribution: '<distribution>'
          java-version-file: .java-version
      - run: java HelloWorldApp.java

v3.8.0

Compare Source

In scope of this release we added logic to pass the token input through on GHES for Microsoft Build of OpenJDK (#​395) and updated minimatch dependency.

v3.6.0

Compare Source

In scope of this release we added Maven Toolchains Support and Maven Toolchains Declaration. Moreover, from this release we use os.arch to determine default architecture for runners: #​376. Besides, we made such changes as:

v3.5.1

Compare Source

In scope of this release we change logic for Microsoft Build of OpenJDK. Previously it had hard coded versions. In this release versions were moved to the separate json file. When a new version of Java is released, it can be added to this file and be used without releasing new version of the action.

v3.5.0

Compare Source

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

v3.4.1

Compare Source

In scope of this release we updated actions/cache package as the new version contains fixes for caching error handling.

v3.4.0

Compare Source

In scope of this release we introduce such changes as:

  • Add Java 11.0.15 to Microsoft Build of OpenJDK: #​331
  • Update versions for Java 17 to 17.0.3 and add aarch64 support to Java 11 for Microsoft Build of OpenJDK: #​342
  • Fix support for Zulu OpenJDK arm64 architecture: #​339
  • Sbt-cache: don't cache some files: #​332

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.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot force-pushed the renovate/actions-setup-java-3.x branch from 6c14f2f to a30cee1 Compare July 11, 2022 16:01
@renovate renovate bot changed the title Update actions/setup-java action to v3.4.0 Update actions/setup-java action to v3.4.1 Jul 11, 2022
@renovate renovate bot force-pushed the renovate/actions-setup-java-3.x branch from a30cee1 to b8a5504 Compare September 25, 2022 13:50
@renovate renovate bot changed the title Update actions/setup-java action to v3.4.1 Update actions/setup-java action to v3.5.0 Sep 25, 2022
@renovate renovate bot force-pushed the renovate/actions-setup-java-3.x branch from b8a5504 to 536a60b Compare November 20, 2022 09:24
@renovate renovate bot changed the title Update actions/setup-java action to v3.5.0 Update actions/setup-java action to v3.6.0 Nov 20, 2022
@renovate renovate bot changed the title Update actions/setup-java action to v3.6.0 Update actions/setup-java action to v3.10.0 Mar 16, 2023
@renovate renovate bot force-pushed the renovate/actions-setup-java-3.x branch from 536a60b to 4930277 Compare March 16, 2023 23:54
@renovate renovate bot changed the title Update actions/setup-java action to v3.10.0 Update actions/setup-java action to v3.11.0 Mar 27, 2023
@renovate renovate bot force-pushed the renovate/actions-setup-java-3.x branch from 4930277 to 671a8f3 Compare March 27, 2023 19:15
@renovate renovate bot changed the title Update actions/setup-java action to v3.11.0 Update actions/setup-java action to v3.12.0 Jul 24, 2023
@renovate renovate bot force-pushed the renovate/actions-setup-java-3.x branch from 671a8f3 to 5440a0d Compare July 24, 2023 12:50
@renovate renovate bot changed the title Update actions/setup-java action to v3.12.0 Update actions/setup-java action to v3.13.0 Sep 20, 2023
@renovate renovate bot force-pushed the renovate/actions-setup-java-3.x branch from 5440a0d to 57dc9bb Compare September 20, 2023 12:54
@renovate renovate bot force-pushed the renovate/actions-setup-java-3.x branch from 57dc9bb to 8fae5d9 Compare April 15, 2025 05:29
@renovate renovate bot changed the title Update actions/setup-java action to v3.13.0 Update actions/setup-java action to v3.14.0 Apr 15, 2025
| datasource  | package            | from   | to      |
| ----------- | ------------------ | ------ | ------- |
| github-tags | actions/setup-java | v3.3.0 | v3.14.1 |
@renovate renovate bot changed the title Update actions/setup-java action to v3.14.0 Update actions/setup-java action to v3.14.1 Apr 17, 2025
@renovate renovate bot force-pushed the renovate/actions-setup-java-3.x branch from 8fae5d9 to 00ad070 Compare April 17, 2025 04:56
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants