diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e48e453..64a0a62 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,10 +20,10 @@ jobs: steps: - name: "Check out Git repository" uses: actions/checkout@v2 - - name: "Use Node.js 14" + - name: "Use Node.js 18" uses: actions/setup-node@v1 with: - node-version: 14 + node-version: 18 - name: "Install application" run: npm install --ignore-scripts - name: "Lint code" @@ -32,7 +32,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - node-version: [14, 16, 18] + node-version: [16, 18, 20] steps: - name: "Check out Git repository" uses: actions/checkout@v2 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 65938c6..8a6fa40 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -10,7 +10,7 @@ jobs: - uses: actions/checkout@v1 - uses: actions/setup-node@v1 with: - node-version: 16 + node-version: 18 - run: npm install - uses: JS-DevTools/npm-publish@v1 with: