From 4c643d82dfec31ea7c0eedab7bd7a18bd066fc6c Mon Sep 17 00:00:00 2001 From: deno Date: Tue, 20 Feb 2024 14:44:39 -0500 Subject: [PATCH] chore(ci): update ghaction versions (#1782) --- .github/workflows/gh-pages-deploy.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/gh-pages-deploy.yml b/.github/workflows/gh-pages-deploy.yml index b1004774..9cc8b122 100644 --- a/.github/workflows/gh-pages-deploy.yml +++ b/.github/workflows/gh-pages-deploy.yml @@ -10,12 +10,12 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4.1.1 - name: Setup Node.js - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: - node-version: 18 + node-version: 20 - name: Install dependencies run: npm install @@ -25,7 +25,7 @@ jobs: - name: Deploy if: success() - uses: peaceiris/actions-gh-pages@v3 + uses: peaceiris/actions-gh-pages@v3.9.3 with: github_token: ${{ secrets.GHPAGE }} publish_dir: dist/fundamental