Skip to content

Commit

Permalink
Move from node16 to node20 (#233)
Browse files Browse the repository at this point in the history
  • Loading branch information
bloep authored Oct 29, 2023
1 parent fa0c716 commit 1c3ce73
Show file tree
Hide file tree
Showing 4 changed files with 10,122 additions and 12,295 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@ jobs:
timeout-minutes: 10
if: github.event.pull_request.draft == false

name: Build for node 16
name: Build for node 20
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: 16
node-version: 20
cache: 'npm'
cache-dependency-path: 'package-lock.json'
- run: npm ci
Expand All @@ -32,12 +32,12 @@ jobs:
timeout-minutes: 10
if: github.event.pull_request.draft == false

name: Release Build for node 16
name: Release Build for node 20
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: 16
node-version: 20
cache: 'npm'
cache-dependency-path: 'package-lock.json'
- run: npm ci
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: 16
node-version: 20
cache: 'npm'
cache-dependency-path: 'package-lock.json'
- run: npm ci
- run: npm test
- run: npm test
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,5 @@
default: ${{ github.event.release.tag_name }}
required: false
runs:
using: 'node16'
using: 'node20'
main: 'dist/index.js'
Loading

0 comments on commit 1c3ce73

Please sign in to comment.