Skip to content

Commit

Permalink
feat: change node version to 20
Browse files Browse the repository at this point in the history
  • Loading branch information
fiqryq committed May 19, 2024
1 parent 2ccd1f3 commit bf8b1c6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 18
node-version: 20
- run: npm ci
- run: npm run build
- run: npx semantic-release
Expand Down
2 changes: 1 addition & 1 deletion action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@ inputs:
required: true

runs:
using: 'node18'
using: 'node20'
main: 'dist/index.js'
2 changes: 1 addition & 1 deletion esbuild.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ build({
platform: 'node',
entryPoints: ['index.js'],
outfile: 'dist/index.js',
target: 'node18',
target: 'node20',
}).catch(() => process.exit(1));

0 comments on commit bf8b1c6

Please sign in to comment.