Skip to content

Commit 30a6977

Browse files
committed
- moves to java 16 for CI
1 parent 4056e92 commit 30a6977

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.azure-pipelines/templates/install-java.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
steps:
2-
- pwsh: 'Invoke-WebRequest -Uri https://github.com/AdoptOpenJDK/openjdk15-binaries/releases/download/jdk-15.0.2%2B7/OpenJDK15U-jdk_x64_windows_hotspot_15.0.2_7.zip -OutFile OpenJDK.zip'
2+
- pwsh: 'Invoke-WebRequest -Uri https://github.com/AdoptOpenJDK/openjdk16-binaries/releases/download/jdk-16%2B36/OpenJDK16-jdk_x64_windows_hotspot_16_36.zip -OutFile OpenJDK.zip'
33
displayName: 'Download JDK'
44

55
- task: JavaToolInstaller@0
66
inputs:
7-
versionSpec: '15'
7+
versionSpec: '16'
88
jdkArchitectureOption: 'x64'
99
jdkSourceOption: 'LocalDirectory'
1010
jdkFile: 'OpenJDK.zip'

.github/workflows/api-level-lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- uses: actions/checkout@v2
1818
- uses: actions/setup-java@v1
1919
with:
20-
java-version: 15
20+
java-version: 16
2121
- name: Setup Android SDK
2222
uses: android-actions/setup-android@v2
2323
- name: Add execution right to the script

.github/workflows/codeql-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424

2525
- uses: actions/setup-java@v1
2626
with:
27-
java-version: 15
27+
java-version: 16
2828

2929
# If this run was triggered by a pull request event, then checkout
3030
# the head of the pull request instead of the merge commit.

.github/workflows/sample-build-check.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- uses: actions/checkout@v2
1414
- uses: actions/setup-java@v1
1515
with:
16-
java-version: 15
16+
java-version: 16
1717
- name: Add execution right to the script
1818
run: chmod +x gradlew
1919
working-directory: ./samples/deviceCodeSample
@@ -26,7 +26,7 @@ jobs:
2626
- uses: actions/checkout@v2
2727
- uses: actions/setup-java@v1
2828
with:
29-
java-version: 15
29+
java-version: 16
3030
- name: Add execution right to the script
3131
run: chmod +x gradlew
3232
working-directory: ./samples/interactiveBrowserSample

0 commit comments

Comments
 (0)