Skip to content

Commit

Permalink
Update version.
Browse files Browse the repository at this point in the history
  • Loading branch information
chumer committed May 28, 2024
1 parent aeb5875 commit 0f2524d
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- uses: actions/checkout@v4
- uses: graalvm/setup-graalvm@v1
with:
java-version: '21.0.2'
java-version: '22.0.1'
distribution: 'graalvm'
github-token: ${{ secrets.GITHUB_TOKEN }}
native-image-job-reports: 'true'
Expand All @@ -31,7 +31,7 @@ jobs:
- uses: actions/checkout@v4
- uses: graalvm/setup-graalvm@v1
with:
java-version: '21.0.2'
java-version: '22.0.1'
distribution: 'graalvm'
github-token: ${{ secrets.GITHUB_TOKEN }}
native-image-job-reports: 'true'
Expand Down
4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import java.nio.file.*
plugins {
id("java")
id("application")
id("org.graalvm.buildtools.native") version "0.9.28"
id("org.graalvm.buildtools.native") version "0.10.2"
}

java {
Expand All @@ -20,7 +20,7 @@ group = "org.example"
version = "1.0-SNAPSHOT"
description = "embedding"

var graalVMVersion: String = "23.1.2";
var graalVMVersion: String = "24.0.1";
dependencies {
implementation("org.graalvm.polyglot:polyglot:$graalVMVersion")
implementation("org.graalvm.polyglot:js:$graalVMVersion")
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

<properties>
<!-- Select the GraalVM version to use. -->
<graalvm.version>23.1.2</graalvm.version>
<graalvm.version>24.0.1</graalvm.version>
</properties>

<dependencies>
Expand Down Expand Up @@ -156,7 +156,7 @@
<plugin>
<groupId>org.graalvm.buildtools</groupId>
<artifactId>native-maven-plugin</artifactId>
<version>0.9.28</version>
<version>0.10.2</version>
<extensions>true</extensions>
<executions>
<execution>
Expand Down

0 comments on commit 0f2524d

Please sign in to comment.