ci: 添加 JDK 24 设置

- 在 GitHub Actions 工作流程中添加了设置 JDK 24 的步骤
- 使用 actions/setup-java@v4 动作进行 JDK 24 的配置
- 保留了原有的 JDK 8 设置步骤
This commit is contained in:
Armamem0t 2025-07-25 22:17:53 +08:00
parent 9cbc18dc6a
commit fb66765fd3
Signed by: minglipro
GPG Key ID: 5F355A77B22AA93B

View File

@ -16,7 +16,12 @@ jobs:
with:
java-version: '8'
distribution: 'adopt'
- name: Set up JDK 24
uses: actions/setup-java@v4
with:
java-version: '24'
distribution: 'adopt'
- name: build
run: |