Skip to content
This repository has been archived by the owner on Dec 6, 2022. It is now read-only.

Releases: joschi/setup-jdk

v2.5.1

27 May 20:00
Compare
Choose a tag to compare

🚨 Important Notice

The joschi/setup-jdk GitHub Action is deprecated.

Please consider switching to the official actions/setup-java action v2 or later which also supports AdoptOpenJDK and its successor Eclipse Temurin:

https://github.com/actions/setup-java/tree/v2.5.0#basic

In order to migrate to actions/setup-java it is sufficient to replace the name of the action and set the distribution parameter to temurin.

Before:

steps:
- uses: actions/checkout@v2
- uses: joschi/setup-jdk@v2
  with:
    java-version: '11' # The OpenJDK version to make available on the path
    architecture: 'x64' # defaults to 'x64'
- run: java -cp java HelloWorldApp

After:

steps:
- uses: actions/checkout@v2
- uses: actions/setup-java@v3
  with:
    distribution: 'temurin' # See 'Supported distributions' for available options
    java-version: '11'
    architecture: 'x64' # defaults to 'x64'
- run: java -cp java HelloWorldApp

What's Changed

Full Changelog: v2.4.0...v2.5.1

v2.5.0

27 May 19:56
Compare
Choose a tag to compare

🚨 Important Notice

The joschi/setup-jdk GitHub Action is deprecated.

Please consider switching to the official actions/setup-java action v2 or later which also supports AdoptOpenJDK and its successor Eclipse Temurin:

https://github.com/actions/setup-java/tree/v2.5.0#basic

In order to migrate to actions/setup-java it is sufficient to replace the name of the action and set the distribution parameter to temurin.

Before:

steps:
- uses: actions/checkout@v2
- uses: joschi/setup-jdk@v2
  with:
    java-version: '11' # The OpenJDK version to make available on the path
    architecture: 'x64' # defaults to 'x64'
- run: java -cp java HelloWorldApp

After:

steps:
- uses: actions/checkout@v2
- uses: actions/setup-java@v3
  with:
    distribution: 'temurin' # See 'Supported distributions' for available options
    java-version: '11'
    architecture: 'x64' # defaults to 'x64'
- run: java -cp java HelloWorldApp

What's Changed

Full Changelog: v2.4.0...v2.5.0

v2.4.0

01 Aug 14:23
f37b373
Compare
Choose a tag to compare
  • Bump hosted-git-info from 2.8.8 to 2.8.9 (#19)
  • Bump lodash from 4.17.19 to 4.17.21 (#18)
  • Bump y18n from 4.0.0 to 4.0.1 (#17)

v2.3.0

05 Oct 14:03
ccd4eb6
Compare
Choose a tag to compare
  • Merge latest changes from setup-java action (#16)
    • Support for GPG signing when publishing Maven packages
    • Add Third Party License Information
    • Fix for architecture parameter being ignored
    • Updates to NPM packages
  • Bump @actions/core from 1.2.4 to 1.2.6 (#15)

v2.2.0

20 Jul 13:56
Compare
Choose a tag to compare

Changes

Acknowledgments

Thanks to @davidkarlsen his valuable input to this release!

v2.1.0: Support aliases for JDK architecture (#8)

12 Jul 22:22
971327c
Compare
Choose a tag to compare

Support aliases for JDK architecture (#8)

Instead of only supporting the exact architecture terminology used by AdoptOpenJDK,
joschi/setup-jdk now also support aliases such as x86 or i686 for x32 and
amd64 or x86_64 for x64.

v2.0.0: Rebase joschi/setup-jdk action on actions/setup-java

12 Jul 22:21
3668709
Compare
Choose a tag to compare

Rebased on actions/setup-java to get the latest features while still using AdoptOpenJDK instead of Zulu Community.

v1.1.2: Update dependencies

24 May 09:36
a306b5c
Compare
Choose a tag to compare

Security

v1.1.1

24 May 09:36
9dc354d
Compare
Choose a tag to compare
  • Refresh dependencies (#4)

v1.1.0

24 May 09:34
Compare
Choose a tag to compare