diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9f04e554..8d75df91 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,7 +20,7 @@ jobs: - name: Setup Node uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0 with: - node-version: 20 + node-version: 24 cache: npm - name: Install dependencies diff --git a/.github/workflows/docs-site.yml b/.github/workflows/docs-site.yml index edabc542..1c84fb28 100644 --- a/.github/workflows/docs-site.yml +++ b/.github/workflows/docs-site.yml @@ -35,7 +35,7 @@ jobs: - name: Setup Node uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0 with: - node-version: 22 + node-version: 24 cache: npm cache-dependency-path: website/package-lock.json diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 42c010dc..30638e43 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -22,7 +22,7 @@ jobs: - name: Setup Node uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0 with: - node-version: 20 + node-version: 24 cache: npm - name: Install dependencies diff --git a/.github/workflows/self-scan.yml b/.github/workflows/self-scan.yml index 0444c157..8dfbffd5 100644 --- a/.github/workflows/self-scan.yml +++ b/.github/workflows/self-scan.yml @@ -16,7 +16,7 @@ jobs: - name: Setup Node uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0 with: - node-version: 20 + node-version: 24 cache: npm - name: Install dependencies diff --git a/action.yml b/action.yml index 87e79c32..bf467f73 100644 --- a/action.yml +++ b/action.yml @@ -10,7 +10,7 @@ inputs: node-version: description: "Node.js version used to install and run CVE Lite CLI" required: false - default: "20" + default: "24" path: description: "Project path to scan" required: false diff --git a/website/docs/github-action.md b/website/docs/github-action.md index 06ecf7a8..6080c3d5 100644 --- a/website/docs/github-action.md +++ b/website/docs/github-action.md @@ -143,4 +143,4 @@ jobs: | Input | Default | Description | Example | |---|---|---|---| | `version` | `1` | CVE Lite CLI version to install (`1`, `1.24.0`, `latest`) | `version: "1.24.0"` | -| `node-version` | `20` | Node.js version used to install and run CVE Lite CLI | `node-version: "22"` | +| `node-version` | `24` | Node.js version used to install and run CVE Lite CLI | `node-version: "26"` |