diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index aab7466..ad3a16b 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -24,7 +24,7 @@ jobs: url: ${{ steps.deployment.outputs.page_url }} runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v3 with: fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod @@ -33,7 +33,7 @@ jobs: with: version: 8 - name: Setup Node.js - uses: actions/setup-node@v4 + uses: actions/setup-node@v3 with: node-version: '18' cache: 'pnpm' @@ -45,13 +45,13 @@ jobs: - name: Setup Pages if: ${{ github.ref == 'refs/heads/main' }} - uses: actions/configure-pages@v4 + uses: actions/configure-pages@v3 - name: Upload artifact if: ${{ github.ref == 'refs/heads/main' }} - uses: actions/upload-pages-artifact@v3 + uses: actions/upload-pages-artifact@v1 with: path: 'content/.vitepress/dist' - name: Deploy to GitHub Pages if: ${{ github.ref == 'refs/heads/main' }} id: deployment - uses: actions/deploy-pages@v2 + uses: actions/deploy-pages@v2 \ No newline at end of file