From 6c0d4f3802c81458328b751b052e5db313cec7e1 Mon Sep 17 00:00:00 2001 From: David Langarica <105810565+DavidLangarica@users.noreply.github.com> Date: Wed, 28 Feb 2024 21:41:40 -0600 Subject: [PATCH] Update deploy-action.yml --- .github/workflows/deploy-action.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/deploy-action.yml b/.github/workflows/deploy-action.yml index e69c982..a70fadc 100644 --- a/.github/workflows/deploy-action.yml +++ b/.github/workflows/deploy-action.yml @@ -32,19 +32,19 @@ jobs: - name: Checkout uses: actions/checkout@v4 - name: Set up Node.js - uses: actions/setup-node@v1 + uses: actions/setup-node@v4 with: - node-version: '18.x' - cache: yarn + node-version: 'latest' + cache: 'yarn' - name: Install dependencies run: yarn install --frozen-lockfile - name: Setup Pages - uses: actions/configure-pages@v1 + uses: actions/configure-pages@v4 - name: Upload artifact - uses: actions/upload-pages-artifact@v1 + uses: actions/upload-pages-artifact@v3 with: # Upload entire repository path: '.' - name: Deploy to GitHub Pages id: deployment - uses: actions/deploy-pages@v1 + uses: actions/deploy-pages@v4