From 47040efaef2985c1e312c8efdb721ae5d6bbc7c5 Mon Sep 17 00:00:00 2001 From: semanticdata Date: Wed, 7 Feb 2024 10:19:29 -0600 Subject: [PATCH] update action version within workflows --- .github/workflows/build.yml | 4 ++-- .github/workflows/deploy.yml | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 266caef5c..2e14d1137 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -20,10 +20,10 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 0 # Fetch all history for git info - - uses: actions/setup-node@v3 + - uses: actions/setup-node@v4 with: node-version: 18 - name: Install Dependencies diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 068705651..2e7ba99a4 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -19,10 +19,10 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 # v3 with: fetch-depth: 0 # Fetch all history for git info - - uses: actions/setup-node@v3 + - uses: actions/setup-node@v3 # v3 with: node-version: 18.14 - name: PNPM Install @@ -32,7 +32,7 @@ jobs: - name: Build Quartz run: npx quartz build - name: Upload artifact - uses: actions/upload-pages-artifact@v2 + uses: actions/upload-pages-artifact@v3 # v2 with: path: public @@ -45,4 +45,4 @@ jobs: steps: - name: Deploy to GitHub Pages id: deployment - uses: actions/deploy-pages@v2 + uses: actions/deploy-pages@v4 # v2