Skip to content

Commit 025a39b

Browse files
authored
Merge pull request #2712 from bugsnag/test/update-node-24
Update ci to use lts version of node (22)
2 parents 5c0c3bb + 45b07e9 commit 025a39b

14 files changed

Lines changed: 20 additions & 17 deletions

.buildkite/basic/electron-pipeline.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ steps:
2121
- "^28.0.0"
2222
- "^30.0.0"
2323
node_version:
24-
- "18"
24+
- "22"
2525
commands:
2626
- echo "Running on Node `node -v`"
2727
- npm install electron@${ELECTRON_VERSION} --no-audit --progress=false --no-save

.buildkite/basic/node-pipeline.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ steps:
3535
- 16
3636
- 18
3737
- 20
38+
- 22
3839
plugins:
3940
docker-compose#v4.12.0:
4041
run: node-maze-runner

.buildkite/basic/react-native-android-full-pipeline.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -94,10 +94,10 @@ steps:
9494
key: "build-react-native-navigation-android-fixture-old-arch"
9595
timeout_in_minutes: 30
9696
agents:
97-
queue: macos-node-18
97+
queue: macos-node-22
9898
env:
9999
JAVA_VERSION: "17"
100-
NODE_VERSION: "18"
100+
NODE_VERSION: "22"
101101
RN_VERSION: "{{matrix}}"
102102
RCT_NEW_ARCH_ENABLED: "0"
103103
BUILD_ANDROID: "true"
@@ -119,10 +119,10 @@ steps:
119119
key: "build-react-native-navigation-android-fixture-new-arch"
120120
timeout_in_minutes: 30
121121
agents:
122-
queue: macos-node-18
122+
queue: macos-node-22
123123
env:
124124
JAVA_VERSION: "17"
125-
NODE_VERSION: "18"
125+
NODE_VERSION: "22"
126126
RN_VERSION: "{{matrix}}"
127127
RCT_NEW_ARCH_ENABLED: "1"
128128
BUILD_ANDROID: "true"

.buildkite/basic/react-native-android-pipeline.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ steps:
1313
env:
1414
JAVA_VERSION: "17"
1515
RN_VERSION: "{{matrix}}"
16+
NODE_VERSION: "22"
1617
RCT_NEW_ARCH_ENABLED: "1"
1718
BUILD_ANDROID: "true"
1819
REACT_NAVIGATION: "true"

.buildkite/basic/react-native-ios-full-pipeline.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ steps:
9393
agents:
9494
queue: "macos-15"
9595
env:
96-
NODE_VERSION: "18"
96+
NODE_VERSION: "22"
9797
RN_VERSION: "{{matrix}}"
9898
RCT_NEW_ARCH_ENABLED: "0"
9999
BUILD_IOS: "true"

.buildkite/basic/react-native-ios-pipeline.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ steps:
1616
queue: "macos-15"
1717
env:
1818
RN_VERSION: "{{matrix}}"
19+
NODE_VERSION: "22"
1920
RCT_NEW_ARCH_ENABLED: "1"
2021
BUILD_IOS: "true"
2122
XCODE_VERSION: "16.2.0"

.buildkite/pipeline.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ steps:
88
- label: ":copyright: License Audit"
99
timeout_in_minutes: 20
1010
agents:
11-
queue: "macos-node-18"
11+
queue: "macos-node-22"
1212
command: scripts/license_finder.sh
1313

1414
#
@@ -26,9 +26,9 @@ steps:
2626
key: "publish-js"
2727
timeout_in_minutes: 10
2828
agents:
29-
queue: "macos-node-18"
29+
queue: "macos-node-22"
3030
env:
31-
NODE_VERSION: "18"
31+
NODE_VERSION: "22"
3232
PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD: "1"
3333
command:
3434
- "bundle install"
@@ -92,6 +92,6 @@ steps:
9292
#
9393
- label: ":git: Detect changed packages"
9494
agents:
95-
queue: "macos-node-18"
95+
queue: "macos-node-22"
9696
timeout_in_minutes: 5
9797
command: node .buildkite/pipeline_trigger.js

.github/workflows/aws-lambda.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
- name: Install Node
3232
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
3333
with:
34-
node-version: 18
34+
node-version: 22
3535

3636
- name: Run tests
3737
run: |

.github/workflows/pr-diff.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
- name: Setup node
1212
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
1313
with:
14-
node-version: 18.x
14+
node-version: 22
1515

1616
- name: Checkout base branch
1717
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2

.github/workflows/test-electron.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
strategy:
1111
matrix:
1212
electron: [ '^20.0.0', '^24.0.0', '^26.0.0', '^28.0.0', '^30.0.0' ]
13-
node-version: [18]
13+
node-version: [22]
1414
os: [ ubuntu-latest ]
1515

1616
steps:

0 commit comments

Comments
 (0)