Skip to content

Commit

Permalink
Use node v20 by default (#6)
Browse files Browse the repository at this point in the history
  • Loading branch information
nguyenj-c committed Feb 19, 2024
1 parent a3a4042 commit 649e763
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Setup a node app in a monorepo:

### `node-version`

**Required** Nodejs version. Default `"14"`.
**Required** Nodejs version. Default `"20"`.

### `working-directory`

Expand All @@ -20,14 +20,14 @@ Setup a node app in a monorepo:
```yaml
- uses: gogaille/setup-monorepo-node-app
with:
node-version: 14
node-version: 20
working-directory: some-node-app-dir
```

```yaml
- uses: gogaille/setup-monorepo-node-app
with:
node-version: 14
node-version: 20
working-directory: some-node-app-dir
other-patterns-to-sparse-checkout: .github
```
2 changes: 1 addition & 1 deletion action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ inputs:
node-version:
description: Nodejs version to use
required: true
default: "16"
default: "20"
working-directory:
description: Directory of the node application in the mono repo
required: true
Expand Down

0 comments on commit 649e763

Please sign in to comment.