From d4810e668a3bbb60339ef0ae219632b1578c35cb Mon Sep 17 00:00:00 2001 From: krinkle Date: Tue, 18 Feb 2025 09:13:54 -0500 Subject: [PATCH] Update deploy.yml Update version of actions since actions/upload-artifact@v3 now errors on deprecation warning. See latest example at https://vitejs.dev/guide/static-deploy --- .github/workflows/deploy.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 5de088c..e96f993 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -42,12 +42,12 @@ jobs: - name: Build run: npm run build - name: Setup Pages - uses: actions/configure-pages@v3 + uses: actions/configure-pages@v4 - name: Upload artifact - uses: actions/upload-pages-artifact@v2 + uses: actions/upload-pages-artifact@v3 with: # Upload dist repository path: './dist' - name: Deploy to GitHub Pages id: deployment - uses: actions/deploy-pages@v2 + uses: actions/deploy-pages@v4