-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update Node version to latest LTS (#397)
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
Showing
3 changed files
with
5 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,7 +20,7 @@ jobs: | |
uses: actions/[email protected] | ||
with: | ||
cache: npm | ||
node-version: 16 | ||
node-version: 20 | ||
|
||
- name: Install dependencies | ||
run: npm install | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -49,7 +49,7 @@ jobs: | |
uses: actions/[email protected] | ||
with: | ||
cache: npm | ||
node-version: 16 | ||
node-version: 20 | ||
|
||
- name: Install dependencies | ||
run: npm install | ||
|
@@ -72,7 +72,7 @@ jobs: | |
uses: actions/[email protected] | ||
with: | ||
cache: npm | ||
node-version: 16 | ||
node-version: 20 | ||
|
||
- name: Install dependencies | ||
run: npm install | ||
|
@@ -95,7 +95,7 @@ jobs: | |
uses: actions/[email protected] | ||
with: | ||
cache: npm | ||
node-version: 16 | ||
node-version: 20 | ||
|
||
- name: Install dependencies | ||
run: npm install | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,5 +13,5 @@ inputs: | |
default: "latest" | ||
|
||
runs: | ||
using: "node16" | ||
using: "node20" | ||
main: "dist/index.js" |