Skip to content

Commit 7580348

Browse files
committed
Upgraded CI steps for nodejs v22
1 parent db1bbac commit 7580348

File tree

4 files changed

+18
-3
lines changed

4 files changed

+18
-3
lines changed

.github/workflows/autofix.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,11 @@ jobs:
2020
- name: Checkout repository
2121
uses: actions/checkout@v4
2222

23+
- name: Set up Node.js
24+
uses: actions/setup-node@v4
25+
with:
26+
node-version: '22'
27+
2328
- name: Install dependencies
2429
run: yarn install
2530

.github/workflows/automerge.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,14 @@ jobs:
2020
uses: juliangruber/find-pull-request-action@v1
2121
with:
2222
branch: ${{ github.event.workflow_run.head_branch }}
23-
23+
2424
- name: Checkouting code
2525
uses: actions/checkout@v4
2626
with:
2727
ref: ${{ github.event.workflow_run.head_branch }}
28-
28+
2929
- name: Merge pull request
3030
env:
3131
PR_URL: ${{ steps.find_pr.outputs.url }}
32-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
32+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3333
run: gh pr merge --merge

.github/workflows/build.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,11 @@ jobs:
2525
- name: Checkout Repository
2626
uses: actions/checkout@v4
2727

28+
- name: Set up Node.js
29+
uses: actions/setup-node@v4
30+
with:
31+
node-version: '22'
32+
2833
- name: Install Dependencies
2934
run: yarn install
3035

.github/workflows/test.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,11 @@ jobs:
1616
- name: Checkout code
1717
uses: actions/checkout@v4
1818

19+
- name: Set up Node.js
20+
uses: actions/setup-node@v4
21+
with:
22+
node-version: '22'
23+
1924
- name: Install dependencies
2025
run: yarn install
2126

0 commit comments

Comments
 (0)