From acb1031c1728bf17c6422c843a4a261e4c8c0eb2 Mon Sep 17 00:00:00 2001 From: Klaus Reimer Date: Sun, 31 Dec 2023 14:30:27 +0100 Subject: [PATCH] Update CI Node.js versions --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 350dfe4..13f727b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -5,7 +5,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - node-version: [ 16.x, 18.x ] + node-version: [ 18.x, 20.x ] steps: - uses: actions/checkout@v3 - name: Use Node.js ${{ matrix.node-version }} @@ -19,7 +19,7 @@ jobs: - name: Build Site run: npm run site - name: Deploy Site - if: ${{ github.ref == 'refs/heads/main' && matrix.node-version == '18.x' }} + if: ${{ github.ref == 'refs/heads/main' && matrix.node-version == '20.x' }} uses: JamesIves/github-pages-deploy-action@v4 with: branch: gh-pages