Skip to content

Update GraalVM version #102

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
- name: download GraalVM
run: |
download_url="https://github.com/graalvm/graalvm-ce-builds/releases/download/jdk-21.0.1/graalvm-community-jdk-21.0.1_linux-x64_bin.tar.gz"
download_url="https://github.com/graalvm/graalvm-ce-builds/releases/download/jdk-21.0.2/graalvm-community-jdk-21.0.2_linux-x64_bin.tar.gz"
wget -O $RUNNER_TEMP/graal_package.tar.gz $download_url
- name: Set up GraalVM
uses: actions/setup-java@v3
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ RUN set -eux \
# Step 2: Download Graal and Maven into the base image
FROM base AS graal-builder
ARG TARGETARCH
ARG GRAALVM_JDK_VERSION=21.0.1
ARG MAVEN_VERSION=3.9.5
ARG GRAALVM_JDK_VERSION=21.0.2
ARG MAVEN_VERSION=3.9.6

RUN set -eux \
&& JAVA_ARCH= \
Expand Down
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -67,9 +67,9 @@
<apache.commons.compress.version>1.26.1</apache.commons.compress.version>
<apache.kafka.version>3.6.2</apache.kafka.version>
<confluent.version>7.6.0</confluent.version>
<graalvm.version>23.1.1</graalvm.version>
<graalvm.polyglot.version>23.1.1</graalvm.polyglot.version>
<graalvm.python.version>23.1.1</graalvm.python.version>
<graalvm.version>23.1.2</graalvm.version>
<graalvm.polyglot.version>23.1.2</graalvm.polyglot.version>
<graalvm.python.version>23.1.2</graalvm.python.version>
<guava.version>33.1.0-jre</guava.version>
<jackson.version>2.17.0</jackson.version>
<jakarta.soap.version>3.0.1</jakarta.soap.version>
Expand Down