diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index c0c3b85..6168ffb 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -1,5 +1,5 @@ # Simple workflow for deploying static content to GitHub Pages -name: Deploy to GitHub Pages +name: Deploy static content to Pages on: # Runs on pushes targeting the default branch @@ -29,11 +29,11 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Set up Node uses: actions/setup-node@v3 with: - node-version: 18 + node-version: 20 cache: "npm" - name: Install dependencies run: npm install @@ -42,10 +42,10 @@ jobs: - name: Setup Pages uses: actions/configure-pages@v3 - name: Upload artifact - uses: actions/upload-pages-artifact@v1 + uses: actions/upload-pages-artifact@v2 with: # Upload dist repository path: "./dist" - name: Deploy to GitHub Pages id: deployment - uses: actions/deploy-pages@v1 + uses: actions/deploy-pages@v2