Skip to content

Commit f02964e

Browse files
committed
build(deps): bump from JDK11 to JDK17
required one tweak to gradle.properties to remove argument dropped in JDK17
1 parent b0908e8 commit f02964e

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.github/workflows/linting.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,11 @@ jobs:
2525
- uses: actions/setup-node@v3
2626
with:
2727
node-version: 16
28-
- name: Configure JDK 1.11
28+
- name: Configure JDK
2929
uses: actions/setup-java@v3
3030
with:
3131
distribution: 'temurin'
32-
java-version: '11'
32+
java-version: '17'
3333
- name: Get yarn cache directory path
3434
id: yarn-cache-dir-path
3535
run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT

.github/workflows/tests_e2e_android.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,11 +61,11 @@ jobs:
6161
with:
6262
node-version: 16
6363

64-
- name: Configure JDK 1.11
64+
- name: Configure JDK
6565
uses: actions/setup-java@v3
6666
with:
6767
distribution: 'temurin'
68-
java-version: '11'
68+
java-version: '17'
6969

7070
# Set path variables needed for caches
7171
- name: Set workflow variables

.github/workflows/tests_e2e_ios.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,11 @@ jobs:
3838
with:
3939
node-version: 16
4040

41-
- name: Configure JDK 1.11
41+
- name: Configure JDK
4242
uses: actions/setup-java@v3
4343
with:
4444
distribution: 'temurin'
45-
java-version: '11'
45+
java-version: '17'
4646

4747
- uses: maxim-lobanov/setup-xcode@v1
4848
with:

tests/android/gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ org.gradle.daemon=true
1111
org.gradle.caching=true
1212
org.gradle.parallel=true
1313
org.gradle.configureondemand=true
14-
org.gradle.jvmargs=-Xmx3g -XX:MaxPermSize=2048m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8
14+
org.gradle.jvmargs=-Xmx3072M -Dfile.encoding=UTF-8
1515
# When configured, Gradle will run in incubating parallel mode.
1616
# This option should only be used with decoupled projects. More details, visit
1717
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects

0 commit comments

Comments
 (0)