From a61ce56c69e5921af91482cb830cd92e493e5b1a Mon Sep 17 00:00:00 2001 From: alina-yur Date: Mon, 18 Mar 2024 11:14:04 +0100 Subject: [PATCH] =?UTF-8?q?use=20GraalVM=20=F0=9F=9A=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/maven.yml | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index 886b9c1..b077a3d 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -13,11 +13,12 @@ jobs: steps: - uses: actions/checkout@v3 - - name: Set up JDK 21 - uses: actions/setup-java@v3 + - name: Set up GraalVM + uses: graalvm/setup-graalvm@v1 with: - java-version: '21' - distribution: 'temurin' - cache: maven + java-version: '22-ea' # Adjust this version to match the version you want from GraalVM + distribution: 'graalvm' + github-token: ${{ secrets.GITHUB_TOKEN }} + # Add any other specific options you need for GraalVM here - name: Build with Maven - run: mvn -B package --file pom.xml + run: mvn -B package --file pom.xml \ No newline at end of file