@@ -40,10 +40,10 @@ jobs:
40
40
- uses : actions/checkout@v4
41
41
- uses : actions/setup-node@v4
42
42
with :
43
- node-version : 16
43
+ node-version : 18
44
44
- uses : actions/setup-java@v3
45
45
with :
46
- java-version : " 11 "
46
+ java-version : ' 17 '
47
47
distribution : " adopt"
48
48
- name : Install Global Dependencies
49
49
run : yarn global add react-native-cli @sentry/cli yalc
63
63
run : yalc publish
64
64
- uses : actions/setup-node@v4
65
65
with :
66
- node-version : 16
66
+ node-version : 18
67
67
- uses : actions/cache@v3
68
68
id : app-plain-cache
69
69
with :
@@ -148,7 +148,7 @@ jobs:
148
148
strategy :
149
149
fail-fast : false # keeps matrix running if one fails
150
150
matrix :
151
- rn-version : ['0.65.3', '0.72.4 ']
151
+ rn-version : ['0.65.3', '0.73.0 ']
152
152
rn-architecture : ['legacy', 'new']
153
153
platform : ['android', 'ios']
154
154
build-type : ['dev', 'production']
@@ -200,20 +200,21 @@ jobs:
200
200
echo "SENTRY_DIST=$SENTRY_DIST"
201
201
202
202
- uses : actions/setup-node@v4
203
- if : ${{ matrix.rn-version == '0.65.3' }}
204
- with :
205
- node-version : 16
206
-
207
- - uses : actions/setup-node@v4
208
- if : ${{ matrix.rn-version != '0.65.3' }}
209
203
with :
210
204
node-version : 18
211
205
212
206
- uses : actions/setup-java@v3
207
+ if : ${{ matrix.rn-version == '0.65.3' }}
213
208
with :
214
209
java-version : ' 11'
215
210
distribution : ' adopt'
216
211
212
+ - uses : actions/setup-java@v3
213
+ if : ${{ matrix.rn-version != '0.65.3' }}
214
+ with :
215
+ java-version : ' 17'
216
+ distribution : ' adopt'
217
+
217
218
- name : Setup Global Tools
218
219
run : |
219
220
yarn global add yalc semver
@@ -252,6 +253,11 @@ jobs:
252
253
- name : Package SDK
253
254
run : yalc publish
254
255
256
+ - uses : actions/setup-node@v4
257
+ if : ${{ matrix.rn-version == '0.65.3' }}
258
+ with :
259
+ node-version : 16
260
+
255
261
- name : Download Plain RN ${{ matrix.rn-version }} App
256
262
working-directory : test/react-native/versions
257
263
run : git clone $RN_DIFF_REPOSITORY --branch release/${{ matrix.rn-version }} --single-branch ${{ matrix.rn-version }}
@@ -385,7 +391,7 @@ jobs:
385
391
strategy :
386
392
fail-fast : false # keeps matrix running if one fails
387
393
matrix :
388
- rn-version : ['0.65.3', '0.72.4 ']
394
+ rn-version : ['0.65.3', '0.73.0 ']
389
395
rn-architecture : ['legacy', 'new']
390
396
platform : ['android', 'ios']
391
397
build-type : ['production']
@@ -427,7 +433,7 @@ jobs:
427
433
- uses : actions/setup-node@v4
428
434
if : ${{ matrix.rn-version == '0.65.3' }}
429
435
with :
430
- node-version : 16
436
+ node-version : 18
431
437
432
438
- uses : actions/setup-node@v4
433
439
if : ${{ matrix.rn-version != '0.65.3' }}
@@ -436,7 +442,7 @@ jobs:
436
442
437
443
- uses : actions/setup-java@v3
438
444
with :
439
- java-version : ' 11 '
445
+ java-version : ' 17 '
440
446
distribution : ' adopt'
441
447
442
448
- name : NPM cache E2E Tests Library
0 commit comments