Skip to content

Commit e20b0f5

Browse files
authored
Merge pull request #1799 from guilherme-gm/upgrade-node
ci: upgrade Node version on most pipelines to 22
2 parents be2606b + 992822b commit e20b0f5

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- name: Setup Node.js
2222
uses: actions/setup-node@v3
2323
with:
24-
node-version: lts/fermium
24+
node-version: 22
2525

2626
- name: Install
2727
run: yarn
@@ -39,7 +39,7 @@ jobs:
3939
- name: Setup Node.js
4040
uses: actions/setup-node@v3
4141
with:
42-
node-version: lts/fermium
42+
node-version: 22
4343

4444
- name: Install
4545
run: yarn
@@ -57,10 +57,10 @@ jobs:
5757
- name: Setup Node.js
5858
uses: actions/setup-node@v3
5959
with:
60-
node-version: lts/fermium
60+
node-version: 22
6161

6262
- name: Install
63-
run: yarn
63+
run: yarn
6464

6565
- name: Run component tests
6666
run: yarn test

.github/workflows/deploy-vue-storybook.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,10 @@ jobs:
2929
- uses: actions/checkout@v4
3030
with:
3131
ref: main
32-
- name: Use Node.js 20.x
32+
- name: Use Node.js 22
3333
uses: actions/setup-node@v4
3434
with:
35-
node-version: '20.x'
35+
node-version: 22
3636

3737
- name: Install Vue 3 dependencies
3838
run: |

.github/workflows/release-republish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@ jobs:
2424
git config user.name github-actions
2525
git config user.email [email protected]
2626
27-
- name: Use Node.js 18.x
27+
- name: Use Node.js 22.x
2828
uses: actions/setup-node@v4 # https://github.com/actions/setup-node
2929
with:
30-
node-version: 18
30+
node-version: 22
3131
registry-url: https://registry.npmjs.org
3232

3333
- name: Install dependencies

.github/workflows/release-v3.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@ jobs:
2424
git config user.name github-actions
2525
git config user.email [email protected]
2626
27-
- name: Use Node.js 18.x
27+
- name: Use Node.js 22.x
2828
uses: actions/setup-node@v4 # https://github.com/actions/setup-node
2929
with:
30-
node-version: 18
30+
node-version: 22
3131
registry-url: https://registry.npmjs.org
3232

3333
# Ensure npm 11.5.1 or later for trusted publishing

.github/workflows/test-storybook.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- uses: actions/checkout@v4
1717
- uses: actions/setup-node@v4
1818
with:
19-
node-version: '18.x'
19+
node-version: 22
2020
- name: Install packages
2121
run: yarn
2222
- name: Install Playwright Browsers

0 commit comments

Comments
 (0)