Skip to content
This repository has been archived by the owner on Apr 17, 2023. It is now read-only.

Releases: DeLaGuardo/setup-graalvm

Nightly Builds!

24 Sep 13:04
48f2bf3
Compare
Choose a tag to compare

To setup latest Nightly Build please set graalvm option to "nightly" and add personal-token: ${{ secrets.GITHUB_TOKEN }} This token is used to authenticate graphql requests to github's API to retrieve information about latest nightly release only. For more information about personal access token please visit the link

New arguments

16 Mar 10:21
a766aa7
Compare
Choose a tag to compare

Additional way to supply arguments to determine desired GraalVM version.

before:

      - name: Setup GraalVM
        uses: DeLaGuardo/setup-graalvm@master
        with:
          graalvm-version: 21.0.0.2.java11

after:

      - name: Setup GraalVM
        uses: DeLaGuardo/setup-graalvm@master
        with:
          graalvm: 21.0.0.2
          # optional, available: java8 and java11, defaults to java8
          java: java11
          # optional, available: amd64 and aarch64, defaults to amd64
          arch: amd64

graalvm-version is still working

Upgrade dependency and add missing environment variable

26 Dec 22:35
b990167
Compare
Choose a tag to compare
Merge pull request #9 from DeLaGuardo/fix-gu

Upgrade deps and add GRAALVM_HOME env

Fix deprecation warning from GH action's runtime

26 Nov 12:37
8bbfe44
Compare
Choose a tag to compare

IMPORTANT!

Consider to use branch-based or commit-based release to avoid problems like the one caused by deprecating some internal GH action's API.

DeLaGuardo/setup-graalvm@master

oracle -> graalvm org switch

25 Nov 10:37
4d9fde2
Compare
Choose a tag to compare
2.0

Update version in example

Holy Grail

02 Oct 13:51
5bcf84f
Compare
Choose a tag to compare
1.0

small fixes for action description