Skip to content

Commit

Permalink
[F] Try to fix GH action by updating deps
Browse files Browse the repository at this point in the history
  • Loading branch information
sauricat authored Dec 19, 2023
1 parent de461d2 commit 810f475
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod

Expand All @@ -33,7 +33,7 @@ jobs:
with:
version: 8
- name: Setup Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: '18'
cache: 'pnpm'
Expand All @@ -45,10 +45,10 @@ jobs:

- name: Setup Pages
if: ${{ github.ref == 'refs/heads/main' }}
uses: actions/configure-pages@v3
uses: actions/configure-pages@v4
- name: Upload artifact
if: ${{ github.ref == 'refs/heads/main' }}
uses: actions/upload-pages-artifact@v1
uses: actions/upload-pages-artifact@v3
with:
path: 'content/.vitepress/dist'
- name: Deploy to GitHub Pages
Expand Down

0 comments on commit 810f475

Please sign in to comment.