diff --git a/.github/workflows/health-check.yml b/.github/workflows/health-check.yml index de78f08..489e9ed 100644 --- a/.github/workflows/health-check.yml +++ b/.github/workflows/health-check.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - node: [ '12.13.0', '12.x', '14.x', '16.x' ] + node: [ '16.x', '18.x', '20.x' ] name: Node ${{ matrix.node }} steps: - uses: actions/checkout@v2 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index ccf69a1..6da7c0a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -23,7 +23,7 @@ jobs: - name: Setup Node.js uses: actions/setup-node@v1 with: - node-version: 16 + node-version: 18 - name: Install dependencies run: npm ci - name: Release diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 36cc382..17b382b 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - node: [ '12.13.0', '12.x', '14.x', '16.x' ] + node: [ '16.x', '18.x', '20.x' ] name: Node ${{ matrix.node }} steps: - uses: actions/checkout@v2