Skip to content

Commit

Permalink
Update Node version to latest LTS (#397)
Browse files Browse the repository at this point in the history
The version of Node that is used both for running the action and testing
it on GitHub Actions has been bumped to Node 20, the latest LTS.
  • Loading branch information
jdno authored Oct 21, 2024
1 parent 54cda79 commit f071dd8
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
uses: actions/[email protected]
with:
cache: npm
node-version: 16
node-version: 20

- name: Install dependencies
run: npm install
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/typescript.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
uses: actions/[email protected]
with:
cache: npm
node-version: 16
node-version: 20

- name: Install dependencies
run: npm install
Expand All @@ -72,7 +72,7 @@ jobs:
uses: actions/[email protected]
with:
cache: npm
node-version: 16
node-version: 20

- name: Install dependencies
run: npm install
Expand All @@ -95,7 +95,7 @@ jobs:
uses: actions/[email protected]
with:
cache: npm
node-version: 16
node-version: 20

- name: Install dependencies
run: npm install
Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@ inputs:
default: "latest"

runs:
using: "node16"
using: "node20"
main: "dist/index.js"

0 comments on commit f071dd8

Please sign in to comment.