From 37de09325fa72b87e8d5a5e90131401430096166 Mon Sep 17 00:00:00 2001 From: "Ghislain B." Date: Tue, 18 Feb 2025 09:25:29 -0500 Subject: [PATCH] chore: update all github action plugins to latest --- .github/workflows/main.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index bc9164f..68f93ef 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -20,7 +20,7 @@ jobs: strategy: fail-fast: false matrix: - node: [18] + node: [20] steps: - name: Clone repository @@ -28,14 +28,14 @@ jobs: with: fetch-depth: 3 - - uses: actions/cache@v3 + - uses: actions/cache@v4 with: path: ~/.cache/yarn key: ${{ runner.os }}-node-${{ hashFiles('**/yarn.lock') }} restore-keys: | ${{ runner.os }}-node- - name: Set Node.js version - uses: actions/setup-node@v2 + uses: actions/setup-node@v4 with: node-version: ${{ matrix.node }} @@ -50,7 +50,7 @@ jobs: # always deploy (re-publish) GitHub demo page with a Prod build - name: Deploy to gh-pages - uses: peaceiris/actions-gh-pages@v3 + uses: peaceiris/actions-gh-pages@v4 if: github.ref == 'refs/heads/master' with: github_token: ${{ secrets.GITHUB_TOKEN }}