diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 431b75db3..fee44b416 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -14,7 +14,7 @@ jobs: - uses: actions/checkout@v3 - uses: actions/setup-node@v3 with: - node-version: 16 + node-version: 18 cache: npm - name: Install run: npm ci diff --git a/lib/create-test-action.js b/lib/create-test-action.js index 376344842..2d0467f6f 100644 --- a/lib/create-test-action.js +++ b/lib/create-test-action.js @@ -18,7 +18,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - node_version: ["14", "16", "18"] + node_version: ["18", "20"] steps: - uses: actions/checkout@v3 diff --git a/package.json b/package.json index f033945f2..5744f2d32 100644 --- a/package.json +++ b/package.json @@ -37,6 +37,6 @@ ] }, "engines": { - "node": ">= 14" + "node": ">= 18" } }