Skip to content

Commit cb6b399

Browse files
authored
Merge pull request #636 from microsoftgraph/feature/java18
- switches infrastructure to java 18
2 parents 4769907 + 07756c0 commit cb6b399

File tree

22 files changed

+68
-36
lines changed

22 files changed

+68
-36
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- uses: actions/setup-java@v3
2020
with:
2121
distribution: 'adopt'
22-
java-version: 17
22+
java-version: 18
2323
- name: Setup Android SDK
2424
uses: android-actions/setup-android@v2.0.9
2525
- name: Add execution right to the script

.github/workflows/build-and-publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- name: Set up JDK
2727
uses: actions/setup-java@v3
2828
with:
29-
java-version: 17
29+
java-version: 18
3030
distribution: 'adopt'
3131
cache: gradle
3232
- name: Download file
@@ -58,7 +58,7 @@ jobs:
5858
- name: Set up JDK
5959
uses: actions/setup-java@v3
6060
with:
61-
java-version: 17
61+
java-version: 18
6262
distribution: 'adopt'
6363
cache: gradle
6464
- name: Download file

.github/workflows/codeql-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- uses: actions/setup-java@v3
2727
with:
2828
distribution: 'adopt'
29-
java-version: 17
29+
java-version: 18
3030

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

.github/workflows/gradle-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- name: Set up JDK
2020
uses: actions/setup-java@v3
2121
with:
22-
java-version: 17
22+
java-version: 18
2323
distribution: 'adopt'
2424
cache: gradle
2525
- name: Easy detect-secrets

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- uses: actions/setup-java@v3
1616
with:
1717
distribution: 'adopt'
18-
java-version: 17
18+
java-version: 18
1919
- name: Add execution right to the script
2020
run: chmod +x gradlew
2121
working-directory: ./samples/deviceCodeSample
@@ -29,7 +29,7 @@ jobs:
2929
- uses: actions/setup-java@v3
3030
with:
3131
distribution: 'adopt'
32-
java-version: 17
32+
java-version: 18
3333
- name: Add execution right to the script
3434
run: chmod +x gradlew
3535
working-directory: ./samples/interactiveBrowserSample

.github/workflows/sonarcloud.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- name: Set up JDK
2020
uses: actions/setup-java@v3
2121
with:
22-
java-version: 17
22+
java-version: 18
2323
distribution: 'adopt'
2424
cache: gradle
2525
- name: Cache SonarCloud packages
935 Bytes
Binary file not shown.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5.1-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

android/gradlew

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

android/gradlew.bat

Lines changed: 8 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)