Skip to content

Commit

Permalink
feat: update to node20 (#70)
Browse files Browse the repository at this point in the history
  • Loading branch information
joshjohanning committed Feb 1, 2024
1 parent a2288dc commit 2ac1a18
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/ci.yml
Expand Up @@ -12,7 +12,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version: '20'

- run: npm ci

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Expand Up @@ -9,9 +9,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version: "lts/*"
node-version: '20'
- run: npm ci
- run: npm run build
- run: rm .gitignore # dist/ folder is ignored by default
Expand Down
2 changes: 1 addition & 1 deletion action.yml
Expand Up @@ -14,5 +14,5 @@ outputs:
jsonString:
description: 'JSON string'
runs:
using: 'node16'
using: 'node20'
main: 'dist/index.js'

0 comments on commit 2ac1a18

Please sign in to comment.