Skip to content

Commit

Permalink
[F] revert gh-action steps version
Browse files Browse the repository at this point in the history
  • Loading branch information
artefaritaKuniklo committed Dec 19, 2023
1 parent c6c99cc commit dc0a30f
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 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@v4
- uses: actions/checkout@v3
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@v4
uses: actions/setup-node@v3
with:
node-version: '18'
cache: 'pnpm'
Expand All @@ -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

0 comments on commit dc0a30f

Please sign in to comment.