Skip to content

Commit d1b8bdf

Browse files
authored
build(ci): update Node.js and JDK versions (#459)
1 parent f263bf6 commit d1b8bdf

File tree

5 files changed

+19
-11
lines changed

5 files changed

+19
-11
lines changed

.github/workflows/linting.yml

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

1212
- uses: actions/setup-node@v3
1313
with:
14-
node-version: '12.x'
14+
node-version: '16.x'
1515

1616
- name: Environment Information
1717
run: |

.github/workflows/smoke-test-macos.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,17 @@ jobs:
1616
with:
1717
node-version: '14.x'
1818

19+
- name: set up JDK 11
20+
uses: actions/setup-java@v3
21+
with:
22+
distribution: 'temurin'
23+
java-version: 11
24+
1925
- name: Environment Information
2026
run: |
2127
node --version
2228
npm --version
29+
java --version
2330
2431
- uses: maxim-lobanov/[email protected]
2532
with:

.github/workflows/smoke-test-ubuntu-ionic.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@ jobs:
1010
steps:
1111
- uses: actions/checkout@v3
1212

13-
- name: set up JDK 1.8
13+
- name: set up JDK 11
1414
uses: actions/setup-java@v3
1515
with:
1616
distribution: 'temurin'
17-
java-version: 8
17+
java-version: 11
1818

1919
- uses: actions/setup-node@v3
2020
with:
21-
node-version: '12.x'
21+
node-version: '14.x'
2222

2323
- name: Environment Information
2424
run: |
@@ -31,6 +31,7 @@ jobs:
3131
npm i -g cordova @ionic/cli
3232
ionic start lottie-smoke-test tabs --cordova --type angular --no-interactive --no-confirm
3333
cd lottie-smoke-test
34+
npx ng add @ionic/cordova-builders --skip-confirmation
3435
ionic cordova platform add android@latest --no-interactive --confirm
3536
sed -i '4i\ <preference name="GradlePluginKotlinEnabled" value="true" />' config.xml
3637

.github/workflows/smoke-test-ubuntu.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@ jobs:
1010
steps:
1111
- uses: actions/checkout@v3
1212

13-
- name: set up JDK 1.8
13+
- name: set up JDK 11
1414
uses: actions/setup-java@v3
1515
with:
16-
distribution: 'adopt'
17-
java-version: 8
16+
distribution: 'temurin'
17+
java-version: 11
1818

1919
- uses: actions/setup-node@v3
2020
with:
21-
node-version: '12.x'
21+
node-version: '14.x'
2222

2323
- name: Environment Information
2424
run: |

.github/workflows/smoke-test-windows.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ jobs:
99
steps:
1010
- uses: actions/checkout@v3
1111

12-
- name: set up JDK 1.8
12+
- name: set up JDK 11
1313
uses: actions/setup-java@v3
1414
with:
15-
distribution: 'adopt'
16-
java-version: 8
15+
distribution: 'temurin'
16+
java-version: 11
1717

1818
- uses: actions/setup-node@v3
1919
with:

0 commit comments

Comments
 (0)