Skip to content

Commit ba69cd6

Browse files
committed
update node version from 22.11.0 to 22.12.0
1 parent f2be17c commit ba69cd6

19 files changed

+37
-37
lines changed

.github/actions/js/setup/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ runs:
1414
- name: 'Setup Node'
1515
uses: actions/setup-node@v4
1616
with:
17-
node-version: '22.11.0'
17+
node-version: '22.12.0'
1818
cache: 'yarn'
1919

2020
- name: 'Cache Cypress binary'

.github/workflows/api-test-lint-deploy.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
fetch-depth: 0
5858
- uses: 'actions/setup-node@v4'
5959
with:
60-
node-version: '22.11.0'
60+
node-version: '22.12.0'
6161
- uses: 'actions/setup-python@v4'
6262
with:
6363
python-version: '3.10'
@@ -94,7 +94,7 @@ jobs:
9494
git checkout ${{ github.ref }}
9595
- uses: 'actions/setup-node@v4'
9696
with:
97-
node-version: '22.11.0'
97+
node-version: '22.12.0'
9898
- uses: 'actions/setup-python@v4'
9999
with:
100100
python-version: ${{ matrix.python }}
@@ -198,7 +198,7 @@ jobs:
198198
git checkout ${{ github.ref }}
199199
- uses: 'actions/setup-node@v4'
200200
with:
201-
node-version: '22.11.0'
201+
node-version: '22.12.0'
202202
- uses: 'actions/setup-python@v4'
203203
with:
204204
python-version: '3.10'

.github/workflows/components-test-build-deploy.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
- uses: 'actions/checkout@v4'
4747
- uses: 'actions/setup-node@v4'
4848
with:
49-
node-version: '22.11.0'
49+
node-version: '22.12.0'
5050
- name: 'install udev for usb-detection'
5151
run: |
5252
# WORKAROUND: Remove microsoft debian repo due to https://github.com/microsoft/linux-package-repositories/issues/130. Remove line below after it is resolved
@@ -82,7 +82,7 @@ jobs:
8282
- uses: 'actions/checkout@v4'
8383
- uses: 'actions/setup-node@v4'
8484
with:
85-
node-version: '22.11.0'
85+
node-version: '22.12.0'
8686
- name: 'install udev for usb-detection'
8787
run: |
8888
# WORKAROUND: Remove microsoft debian repo due to https://github.com/microsoft/linux-package-repositories/issues/130. Remove line below after it is resolved
@@ -149,7 +149,7 @@ jobs:
149149
git checkout ${{ github.ref }}
150150
- uses: 'actions/setup-node@v4'
151151
with:
152-
node-version: '22.11.0'
152+
node-version: '22.12.0'
153153
- name: 'set complex environment variables'
154154
id: 'set-vars'
155155
uses: actions/github-script@v6
@@ -189,7 +189,7 @@ jobs:
189189
git checkout ${{ github.ref }}
190190
- uses: 'actions/setup-node@v4'
191191
with:
192-
node-version: '22.11.0'
192+
node-version: '22.12.0'
193193
registry-url: 'https://registry.npmjs.org'
194194
- name: 'install udev for usb-detection'
195195
run: |
@@ -213,7 +213,7 @@ jobs:
213213
json -I -f ./components/package.json -e "delete this.dependencies['@opentrons/step-generation']"
214214
- uses: 'actions/setup-node@v4'
215215
with:
216-
node-version: '22.11.0'
216+
node-version: '22.12.0'
217217
registry-url: 'https://registry.npmjs.org'
218218
- name: 'publish to npm registry'
219219
env:

.github/workflows/docs-build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
git checkout ${{ github.ref }}
5252
- uses: 'actions/setup-node@v4'
5353
with:
54-
node-version: '22.11.0'
54+
node-version: '22.12.0'
5555
- uses: 'actions/setup-python@v3'
5656
with:
5757
python-version: '3.10'

.github/workflows/g-code-testing-lint-test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
sudo apt-get update && sudo apt-get install libudev-dev
5353
- uses: 'actions/setup-node@v4'
5454
with:
55-
node-version: '22.11.0'
55+
node-version: '22.12.0'
5656
- name: 'set complex environment variables'
5757
id: 'set-vars'
5858
uses: actions/github-script@v6

.github/workflows/http-docs-build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
python-version: '3.10'
5555
- uses: 'actions/setup-node@v4'
5656
with:
57-
node-version: '22.11.0'
57+
node-version: '22.12.0'
5858
- uses: './.github/actions/python/setup'
5959
with:
6060
project: 'robot-server'

.github/workflows/js-check.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
- uses: 'actions/checkout@v4'
4646
- uses: 'actions/setup-node@v4'
4747
with:
48-
node-version: '22.11.0'
48+
node-version: '22.12.0'
4949
- name: 'set complex environment variables'
5050
id: 'set-vars'
5151
uses: actions/github-script@v6

.github/workflows/ll-test-build-deploy.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
- uses: 'actions/checkout@v4'
4646
- uses: 'actions/setup-node@v4'
4747
with:
48-
node-version: '22.11.0'
48+
node-version: '22.12.0'
4949
# https://github.com/actions/checkout/issues/290
5050
- name: 'Fix actions/checkout odd handling of tags'
5151
if: startsWith(github.ref, 'refs/tags')
@@ -94,7 +94,7 @@ jobs:
9494
git checkout ${{ github.ref }}
9595
- uses: 'actions/setup-node@v4'
9696
with:
97-
node-version: '22.11.0'
97+
node-version: '22.12.0'
9898
- name: 'install libudev for usb-detection'
9999
run: |
100100
# WORKAROUND: Remove microsoft debian repo due to https://github.com/microsoft/linux-package-repositories/issues/130. Remove line below after it is resolved
@@ -137,7 +137,7 @@ jobs:
137137
git checkout ${{ github.ref }}
138138
- uses: 'actions/setup-node@v4'
139139
with:
140-
node-version: '22.11.0'
140+
node-version: '22.12.0'
141141
- name: 'install libudev for usb-detection'
142142
run: |
143143
# WORKAROUND: Remove microsoft debian repo due to https://github.com/microsoft/linux-package-repositories/issues/130. Remove line below after it is resolved
@@ -183,7 +183,7 @@ jobs:
183183
git checkout ${{ github.ref }}
184184
- uses: 'actions/setup-node@v4'
185185
with:
186-
node-version: '22.11.0'
186+
node-version: '22.12.0'
187187
- name: 'install udev for usb-detection'
188188
run: |
189189
# WORKAROUND: Remove microsoft debian repo due to https://github.com/microsoft/linux-package-repositories/issues/130. Remove line below after it is resolved

.github/workflows/opentrons-ai-client-staging-continuous-deploy.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
- uses: 'actions/checkout@v4'
2828
- uses: 'actions/setup-node@v4'
2929
with:
30-
node-version: '22.11.0'
30+
node-version: '22.12.0'
3131
- name: 'install udev'
3232
run: |
3333
# WORKAROUND: Remove microsoft debian repo due to https://github.com/microsoft/linux-package-repositories/issues/130. Remove line below after it is resolved

.github/workflows/opentrons-ai-client-test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
- uses: 'actions/checkout@v4'
4343
- uses: 'actions/setup-node@v4'
4444
with:
45-
node-version: '22.11.0'
45+
node-version: '22.12.0'
4646
- name: 'install udev'
4747
run: |
4848
# WORKAROUND: Remove microsoft debian repo due to https://github.com/microsoft/linux-package-repositories/issues/130. Remove line below after it is resolved

0 commit comments

Comments
 (0)