Upgrade dependencies - #689
Merged
jeroenvandisseldorp merged 4 commits intoAug 13, 2026
Merged
Conversation
…lished a 25.0.4 JDK tarball, so the download 404s and the image build would fail on merge. pom.xml stays on 25.0.4: those are Maven artifacts, a separate thing. Move the version to .graalvm-jdk-version and the download to scripts/graalvm-tarballs.sh, instead of a copy in each of the three workflows and build-local-docker.sh. Its check mode runs in ci-pr-fork-build.yml, since fork PRs skip the only job that fetches the tarball. Narrow the org.graalvm Dependabot ignore to ">=25.1.0, <25.2.5". Whether the GraalPy _ctypes fix (oracle/graalpython#1018) is in 25.2.5 is unknown, so let PythonContextTest.testNativeAccess decide, as it did for 25.2.4 in Axual#688. Regenerate NOTICE.txt with mvn -o generate-resources -Dlicense.force=true. A normal build skips it, so it had drifted.
KasparMetsa
approved these changes
Aug 13, 2026
CI used distribution 'graalvm', which is Oracle GraalVM at whatever version is latest, while the Docker image ships GraalVM Community at a pinned version. Switch both workflows to 'graalvm-community' and read the version from .graalvm-jdk-version, so CI and the image cannot drift apart. Verified locally on Community 25.0.2: 2611 tests, 0 failures, including PythonContextTest which is what caught the bad GraalVM in Axual#688.
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.



Replaces #680