Skip to content

Commit f4c7082

Browse files
committed
chore(ci): Use Node.js 16.x
1 parent 5d88fed commit f4c7082

File tree

5 files changed

+31
-31
lines changed

5 files changed

+31
-31
lines changed

.github/workflows/birdbox.yml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
fail-fast: false
2626
matrix:
2727
os: [ubuntu-20.04, ubuntu-18.04, macos-11, windows-2019]
28-
node-version: [14.x]
28+
node-version: [16.x]
2929
steps:
3030
- name: Checkout
3131
uses: actions/checkout@v3
@@ -52,9 +52,9 @@ jobs:
5252
node_modules
5353
rust/cubestore/node_modules
5454
packages/*/node_modules
55-
key: ${{ runner.os }}-workspace-main-14.x-${{ hashFiles('**/yarn.lock') }}
55+
key: ${{ runner.os }}-workspace-main-16.x-${{ hashFiles('**/yarn.lock') }}
5656
restore-keys: |
57-
${{ runner.os }}-workspace-main-14.x-
57+
${{ runner.os }}-workspace-main-16.x-
5858
- name: Set Yarn version
5959
run: yarn policies set-version v1.22.5
6060
- name: Yarn install
@@ -107,10 +107,10 @@ jobs:
107107
toolchain: nightly-2022-06-22
108108
override: true
109109
components: rustfmt
110-
- name: Install Node.js 14.x
110+
- name: Install Node.js 16.x
111111
uses: actions/setup-node@v3
112112
with:
113-
node-version: 14.x
113+
node-version: 16.x
114114
- name: Restore lerna
115115
uses: actions/cache@v3
116116
with:
@@ -120,9 +120,9 @@ jobs:
120120
node_modules
121121
rust/cubestore/node_modules
122122
packages/*/node_modules
123-
key: ${{ runner.os }}-workspace-main-14.x-${{ hashFiles('**/yarn.lock') }}
123+
key: ${{ runner.os }}-workspace-main-16.x-${{ hashFiles('**/yarn.lock') }}
124124
restore-keys: |
125-
${{ runner.os }}-workspace-main-14.x-
125+
${{ runner.os }}-workspace-main-16.x-
126126
- name: Set Yarn version
127127
run: yarn policies set-version v1.22.5
128128
- name: Yarn install
@@ -176,10 +176,10 @@ jobs:
176176
toolchain: nightly-2022-06-22
177177
override: true
178178
components: rustfmt
179-
- name: Install Node.js 14.x
179+
- name: Install Node.js 16.x
180180
uses: actions/setup-node@v3
181181
with:
182-
node-version: 14.x
182+
node-version: 16.x
183183
- name: Restore lerna
184184
uses: actions/cache@v3
185185
with:
@@ -189,9 +189,9 @@ jobs:
189189
node_modules
190190
rust/cubestore/node_modules
191191
packages/*/node_modules
192-
key: ${{ runner.os }}-workspace-main-14.x-${{ hashFiles('**/yarn.lock') }}
192+
key: ${{ runner.os }}-workspace-main-16.x-${{ hashFiles('**/yarn.lock') }}
193193
restore-keys: |
194-
${{ runner.os }}-workspace-main-14.x-
194+
${{ runner.os }}-workspace-main-16.x-
195195
- name: Set Yarn version
196196
run: yarn policies set-version v1.22.5
197197
- name: Yarn install

.github/workflows/cloud.yml

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

2525
strategy:
2626
matrix:
27-
node-version: [ 14.x ]
27+
node-version: [ 16.x ]
2828
db: [ 'athena', 'bigquery' ]
2929
fail-fast: false
3030

.github/workflows/publish.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ jobs:
2020
toolchain: nightly-2022-03-08
2121
override: true
2222
components: rustfmt
23-
- name: Install Node.js 14.x
23+
- name: Install Node.js 16.x
2424
uses: actions/setup-node@v3
2525
with:
26-
node-version: 14.x
26+
node-version: 16.x
2727
- name: Get yarn cache directory path
2828
id: yarn-cache-dir-path
2929
run: echo "::set-output name=dir::$(yarn cache dir)"
@@ -35,9 +35,9 @@ jobs:
3535
node_modules
3636
rust/cubestore/node_modules
3737
packages/*/node_modules
38-
key: ${{ runner.os }}-workspace-main-14.x-${{ hashFiles('**/yarn.lock') }}
38+
key: ${{ runner.os }}-workspace-main-16.x-${{ hashFiles('**/yarn.lock') }}
3939
restore-keys: |
40-
${{ runner.os }}-workspace-main-14.x-
40+
${{ runner.os }}-workspace-main-16.x-
4141
- name: Set Yarn version
4242
run: yarn policies set-version v1.22.5
4343
- name: Copy yarn.lock file
@@ -76,7 +76,7 @@ jobs:
7676
name: Build native Linux ${{ matrix.node-version }} ${{ matrix.target }}
7777
strategy:
7878
matrix:
79-
node-version: [14]
79+
node-version: [16]
8080
target: ["x86_64-unknown-linux-gnu", "aarch64-unknown-linux-gnu"]
8181
include:
8282
- target: aarch64-unknown-linux-gnu
@@ -155,7 +155,7 @@ jobs:
155155
name: Build ${{ matrix.os-version }} ${{ matrix.node-version }}
156156
strategy:
157157
matrix:
158-
node-version: [14.x]
158+
node-version: [16.x]
159159
os-version: [windows-2019, macos-11]
160160
fail-fast: false
161161

.github/workflows/push.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -120,10 +120,10 @@ jobs:
120120
toolchain: nightly-2022-03-08
121121
override: true
122122
components: rustfmt
123-
- name: Install Node.js 14.x
123+
- name: Install Node.js 16.x
124124
uses: actions/setup-node@v3
125125
with:
126-
node-version: 14.x
126+
node-version: 16.x
127127
- name: Get yarn cache directory path
128128
id: yarn-cache-dir-path
129129
run: echo "::set-output name=dir::$(yarn cache dir)"
@@ -135,9 +135,9 @@ jobs:
135135
node_modules
136136
rust/cubestore/node_modules
137137
packages/*/node_modules
138-
key: ${{ runner.os }}-workspace-main-14.x-${{ hashFiles('**/yarn.lock') }}
138+
key: ${{ runner.os }}-workspace-main-16.x-${{ hashFiles('**/yarn.lock') }}
139139
restore-keys: |
140-
${{ runner.os }}-workspace-main-14.x-
140+
${{ runner.os }}-workspace-main-16.x-
141141
- name: Set Yarn version
142142
run: yarn policies set-version v1.22.5
143143
- name: Yarn install
@@ -170,10 +170,10 @@ jobs:
170170
toolchain: nightly-2022-03-08
171171
override: true
172172
components: rustfmt
173-
- name: Install Node.js 14.x
173+
- name: Install Node.js 16.x
174174
uses: actions/setup-node@v3
175175
with:
176-
node-version: 14.x
176+
node-version: 16.x
177177
- name: Get yarn cache directory path
178178
id: yarn-cache-dir-path
179179
run: echo "::set-output name=dir::$(yarn cache dir)"
@@ -185,9 +185,9 @@ jobs:
185185
node_modules
186186
rust/cubestore/node_modules
187187
packages/*/node_modules
188-
key: ${{ runner.os }}-workspace-main-14.x-${{ hashFiles('**/yarn.lock') }}
188+
key: ${{ runner.os }}-workspace-main-16.x-${{ hashFiles('**/yarn.lock') }}
189189
restore-keys: |
190-
${{ runner.os }}-workspace-main-14.x-
190+
${{ runner.os }}-workspace-main-16.x-
191191
- name: Set Yarn version
192192
run: yarn policies set-version v1.22.5
193193
- name: Yarn install
@@ -228,7 +228,7 @@ jobs:
228228
229229
strategy:
230230
matrix:
231-
node-version: [14.x]
231+
node-version: [16.x]
232232
fail-fast: false
233233

234234
steps:
@@ -309,7 +309,7 @@ jobs:
309309

310310
strategy:
311311
matrix:
312-
node-version: [14.x]
312+
node-version: [16.x]
313313
fail-fast: false
314314

315315
steps:
@@ -377,7 +377,7 @@ jobs:
377377

378378
strategy:
379379
matrix:
380-
node-version: [14.x]
380+
node-version: [16.x]
381381
db: [
382382
'clickhouse', 'druid', 'elasticsearch', 'mssql', 'mysql', 'postgres', 'prestodb',
383383
'mysql-aurora-serverless', 'crate'
@@ -437,7 +437,7 @@ jobs:
437437

438438
strategy:
439439
matrix:
440-
node-version: [ 14.x ]
440+
node-version: [ 16.x ]
441441
fail-fast: false
442442

443443
steps:

.github/workflows/rust-cubesql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ jobs:
203203
strategy:
204204
matrix:
205205
# We dont need to test under all versions, we do it under linux
206-
node-version: [14.x]
206+
node-version: [16.x]
207207
os-version: [windows-2019, macos-11]
208208
fail-fast: false
209209

0 commit comments

Comments
 (0)