From 21f2f4073b139a044ba61a401c70b27af0a19d8b Mon Sep 17 00:00:00 2001 From: Dominik Date: Mon, 29 Apr 2024 10:45:33 +0200 Subject: [PATCH] feat: update README.md with new node version --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index af954c2..4fe52cd 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ jobs: uses: dafnik/setup-node-pnpm@v1 # with: # pnpm: 8 - # node: 20 + # node: 22 # node-file: '' # cwd: '.' # install: false @@ -25,7 +25,7 @@ jobs: | Inputs | Default value | Description | |--------------------------|---------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | `pnpm` | `8` | PNPM version to install | -| `node` | `20` | Version Spec of the version to use in SemVer notation.
It also emits such aliases as lts, latest, nightly and canary builds.
Examples: 12.x, 10.15.1, >=10.15.0, lts/Hydrogen, 16-nightly, latest, node | +| `node` | `22` | Version Spec of the version to use in SemVer notation.
It also emits such aliases as lts, latest, nightly and canary builds.
Examples: 12.x, 10.15.1, >=10.15.0, lts/Hydrogen, 16-nightly, latest, node | | `node-file` | `''` | File containing the version Spec of the version to use.
Examples: .nvmrc, .node-version, .tool-versions.
If `node` and `node-file` are both provided the action will use version from `node-file`. | | `cwd` | `.` | Changes pnpm-lock.yaml lookup location and the work directory of "pnpm install" if enabled | | `install` | `false` | Runs "pnpm install" in working directory |