diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index fff31d40222..d60b4c54b36 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -51,13 +51,16 @@ jobs: strategy: fail-fast: false matrix: + # We test Stripe SDK against Java LTS versions(8, 11, 17, 21) and currently supported non-LTS versions. + # https://www.oracle.com/java/technologies/java-se-support-roadmap.html java-version: - "1.8" - "11" - "17" - - "18" - - "19" - - "20" + - "21" + - "22" + - "23" + - "24" steps: - uses: extractions/setup-just@v2