@@ -40,10 +40,10 @@ jobs:
4040 - uses : actions/checkout@v4
4141 - uses : actions/setup-node@v4
4242 with :
43- node-version : 16
43+ node-version : 18
4444 - uses : actions/setup-java@v3
4545 with :
46- java-version : " 11 "
46+ java-version : ' 17 '
4747 distribution : " adopt"
4848 - name : Install Global Dependencies
4949 run : yarn global add react-native-cli @sentry/cli yalc
6363 run : yalc publish
6464 - uses : actions/setup-node@v4
6565 with :
66- node-version : 16
66+ node-version : 18
6767 - uses : actions/cache@v3
6868 id : app-plain-cache
6969 with :
@@ -148,7 +148,7 @@ jobs:
148148 strategy :
149149 fail-fast : false # keeps matrix running if one fails
150150 matrix :
151- rn-version : ['0.65.3', '0.72.4 ']
151+ rn-version : ['0.65.3', '0.73.0 ']
152152 rn-architecture : ['legacy', 'new']
153153 platform : ['android', 'ios']
154154 build-type : ['dev', 'production']
@@ -200,20 +200,21 @@ jobs:
200200 echo "SENTRY_DIST=$SENTRY_DIST"
201201
202202 - 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' }}
209203 with :
210204 node-version : 18
211205
212206 - uses : actions/setup-java@v3
207+ if : ${{ matrix.rn-version == '0.65.3' }}
213208 with :
214209 java-version : ' 11'
215210 distribution : ' adopt'
216211
212+ - uses : actions/setup-java@v3
213+ if : ${{ matrix.rn-version != '0.65.3' }}
214+ with :
215+ java-version : ' 17'
216+ distribution : ' adopt'
217+
217218 - name : Setup Global Tools
218219 run : |
219220 yarn global add yalc semver
@@ -252,6 +253,11 @@ jobs:
252253 - name : Package SDK
253254 run : yalc publish
254255
256+ - uses : actions/setup-node@v4
257+ if : ${{ matrix.rn-version == '0.65.3' }}
258+ with :
259+ node-version : 16
260+
255261 - name : Download Plain RN ${{ matrix.rn-version }} App
256262 working-directory : test/react-native/versions
257263 run : git clone $RN_DIFF_REPOSITORY --branch release/${{ matrix.rn-version }} --single-branch ${{ matrix.rn-version }}
@@ -385,7 +391,7 @@ jobs:
385391 strategy :
386392 fail-fast : false # keeps matrix running if one fails
387393 matrix :
388- rn-version : ['0.65.3', '0.72.4 ']
394+ rn-version : ['0.65.3', '0.73.0 ']
389395 rn-architecture : ['legacy', 'new']
390396 platform : ['android', 'ios']
391397 build-type : ['production']
@@ -427,7 +433,7 @@ jobs:
427433 - uses : actions/setup-node@v4
428434 if : ${{ matrix.rn-version == '0.65.3' }}
429435 with :
430- node-version : 16
436+ node-version : 18
431437
432438 - uses : actions/setup-node@v4
433439 if : ${{ matrix.rn-version != '0.65.3' }}
@@ -436,7 +442,7 @@ jobs:
436442
437443 - uses : actions/setup-java@v3
438444 with :
439- java-version : ' 11 '
445+ java-version : ' 17 '
440446 distribution : ' adopt'
441447
442448 - name : NPM cache E2E Tests Library
0 commit comments