Skip to content

Commit befa1a5

Browse files
committed
clarify what versions of java we support
1 parent 1d0c0b1 commit befa1a5

2 files changed

Lines changed: 12 additions & 4 deletions

File tree

.github/workflows/ci.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,14 +54,16 @@ jobs:
5454
matrix:
5555
# We test Stripe SDK against Java LTS versions(8, 11, 17, 21) and currently supported non-LTS versions.
5656
# https://www.oracle.com/java/technologies/java-se-support-roadmap.html
57+
# https://endoflife.date/oracle-jdk
5758
java-version:
59+
# LTS versions
5860
- "1.8"
5961
- "11"
6062
- "17"
6163
- "21"
62-
- "22"
63-
- "23"
64-
- "24"
64+
- "25"
65+
# non-LTS versions
66+
# we should periodically add the latest non-LTS version here to test against
6567

6668
steps:
6769
- uses: extractions/setup-just@v2

README.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,13 @@ The official [Stripe][stripe] Java client library.
1010

1111
### Requirements
1212

13-
- Java 1.8 or later
13+
We support LTS versions of the JDK. Currently, that's Java versions:
14+
15+
- 8 (1.8)
16+
- 11
17+
- 17
18+
- 21
19+
- 25
1420

1521
### Gradle users
1622

0 commit comments

Comments
 (0)