Skip to content

Commit 2ac1a18

Browse files
feat: update to node20 (#70)
1 parent a2288dc commit 2ac1a18

3 files changed

Lines changed: 6 additions & 4 deletions

File tree

.github/workflows/ci.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,9 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- uses: actions/checkout@v4
15-
- uses: actions/setup-node@v3
15+
- uses: actions/setup-node@v4
16+
with:
17+
node-version: '20'
1618

1719
- run: npm ci
1820

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ jobs:
99
runs-on: ubuntu-latest
1010
steps:
1111
- uses: actions/checkout@v4
12-
- uses: actions/setup-node@v3
12+
- uses: actions/setup-node@v4
1313
with:
14-
node-version: "lts/*"
14+
node-version: '20'
1515
- run: npm ci
1616
- run: npm run build
1717
- run: rm .gitignore # dist/ folder is ignored by default

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@ outputs:
1414
jsonString:
1515
description: 'JSON string'
1616
runs:
17-
using: 'node16'
17+
using: 'node20'
1818
main: 'dist/index.js'

0 commit comments

Comments
 (0)