Skip to content

Commit 778e1f4

Browse files
authored
Merge pull request #236 from moia-oss/upgrade-node
Use node 22
2 parents 2268aef + 0f5563e commit 778e1f4

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/ci-checks.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ jobs:
1111
steps:
1212
- name: Checkout
1313
uses: actions/checkout@v4
14-
- name: Use node.js 20.x
14+
- name: Use node.js 22.x
1515
uses: actions/setup-node@v4
1616
with:
17-
node-version: 20
17+
node-version: 22
1818
- name: NPM Install
1919
run: npm ci
2020
- name: Check Format

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ jobs:
1212
uses: actions/checkout@v4
1313
with:
1414
ref: ${{ github.event.release.tag_name }}
15-
- name: Use node.js 20.x
15+
- name: Use node.js 22.x
1616
uses: actions/setup-node@v4
1717
with:
18-
node-version: 20
18+
node-version: 22
1919
- name: NPM Install
2020
run: npm ci
2121
- name: Check Format

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ inputs:
1313
required: false
1414
default: false
1515
runs:
16-
using: 'node20'
16+
using: 'node22'
1717
main: 'dist/index.js'
1818
branding:
1919
icon: 'cloud'

0 commit comments

Comments
 (0)