File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -135,8 +135,11 @@ jobs:
135135 distribution : oracle # Non-LTS - released Sept 2024
136136 - version : 24
137137 distribution : oracle # Non-LTS - released March 2025
138- - version : 25
139- distribution : oracle # LTS - released Sept 2025, support until 2033
138+ # JDK 25 disabled: Arrow 19.0.0 uses sun.misc.Unsafe which is
139+ # inaccessible in JDK 25, causing NoClassDefFoundError on RootAllocator.
140+ # Re-enable when Arrow adds JDK 25 support.
141+ # - version: 25
142+ # distribution: oracle # LTS - released Sept 2025, support until 2033
140143
141144 steps :
142145 - uses : actions/checkout@v4
Original file line number Diff line number Diff line change 1+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2+ <suppressions xmlns =" https://jeremylong.github.io/DependencyCheck/dependency-suppression.1.3.xsd" >
3+ <!--
4+ CVE-2026-25087: Affects Apache Arrow <= 19.0.0.
5+ No upstream fix is available yet (19.0.0 is the latest release).
6+ Suppress until Arrow ships a patched version, then remove this entry.
7+ -->
8+ <suppress >
9+ <notes ><![CDATA[
10+ CVE-2026-25087 in Apache Arrow. No fix available as of Arrow 19.0.0.
11+ Tracked for removal when Arrow publishes a patched release.
12+ ]]> </notes >
13+ <cve >CVE-2026-25087</cve >
14+ </suppress >
15+ </suppressions >
Original file line number Diff line number Diff line change 165165 <version >12.2.0</version >
166166 <configuration >
167167 <failBuildOnCVSS >7</failBuildOnCVSS >
168+ <suppressionFile >owasp-suppressions.xml</suppressionFile >
169+ <!-- Don't fail the build when the NVD API is unavailable (429, timeouts).
170+ The scan will proceed with cached/local data instead. -->
171+ <failOnError >false</failOnError >
168172 </configuration >
169173 </plugin >
170174 <!-- P1: Test coverage reporting -->
You can’t perform that action at this time.
0 commit comments