From 2eadfe5a02bb3a6f69b5730ad5624099429190c2 Mon Sep 17 00:00:00 2001 From: Edward Dewhurst Date: Tue, 9 Jul 2024 11:57:40 +0100 Subject: [PATCH] Update GitHub actions to v4 --- .github/workflows/deploy.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index f594b3b3a1..50fd4d3801 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -20,12 +20,12 @@ jobs: concurrency: group: ${{ github.workflow }}-${{ github.ref }} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Setup Node - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: - node-version: '16' + node-version: '18' - name: Install library dependencies run: npm install @@ -48,7 +48,7 @@ jobs: run: npm run build:examples:site - name: Deploy - uses: peaceiris/actions-gh-pages@v3 + uses: peaceiris/actions-gh-pages@v4 if: ${{ github.ref == 'refs/heads/master' }} with: github_token: ${{ secrets.GITHUB_TOKEN }}