File tree Expand file tree Collapse file tree 2 files changed +13
-0
lines changed Expand file tree Collapse file tree 2 files changed +13
-0
lines changed Original file line number Diff line number Diff line change @@ -213,6 +213,15 @@ jobs:
213
213
GITHUB_USERNAME : ((github-username))
214
214
JDK_VERSION : java12
215
215
image : spring-boot-ci-image
216
+ - task : detect-jdk13-update
217
+ file : git-repo/ci/tasks/detect-jdk-updates.yml
218
+ params :
219
+ GITHUB_REPO : spring-boot
220
+ GITHUB_ORGANIZATION : spring-projects
221
+ GITHUB_PASSWORD : ((github-password))
222
+ GITHUB_USERNAME : ((github-username))
223
+ JDK_VERSION : java13
224
+ image : spring-boot-ci-image
216
225
- name : build
217
226
serial : true
218
227
public : true
Original file line number Diff line number Diff line change @@ -13,6 +13,10 @@ case "$JDK_VERSION" in
13
13
BASE_URL=" https://api.adoptopenjdk.net/v2/info/releases/openjdk12"
14
14
ISSUE_TITLE=" Upgrade Java 12 version in CI image"
15
15
;;
16
+ java13)
17
+ BASE_URL=" https://api.adoptopenjdk.net/v2/info/nightly/openjdk13"
18
+ ISSUE_TITLE=" Upgrade Java 13 version in CI image"
19
+ ;;
16
20
* )
17
21
echo $" Unknown java version"
18
22
exit 1;
You can’t perform that action at this time.
0 commit comments