-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This PR switches the action to Node.js 20, which is now widely available on GitHub runners. This simplifies the overall action code and brings the action in line with what GitHub recommends for actions in the future. Signed-off-by: burgholzer <[email protected]>
- Loading branch information
1 parent
79d3e76
commit 2d52b2c
Showing
3 changed files
with
6 additions
and
21 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 |
---|---|---|
|
@@ -24,10 +24,10 @@ jobs: | |
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Set Node.js 18 | ||
- name: Set Node.js | ||
uses: actions/[email protected] | ||
with: | ||
node-version: 18 | ||
node-version: 20.x | ||
cache: npm | ||
|
||
- name: Install dependencies | ||
|
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 |
---|---|---|
|
@@ -21,10 +21,10 @@ jobs: | |
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Set Node.js 18 | ||
- name: Set Node.js | ||
uses: actions/[email protected] | ||
with: | ||
node-version: 18 | ||
node-version: 20.x | ||
cache: npm | ||
- run: npm ci | ||
- run: npm run all | ||
|
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