Skip to content

Commit

Permalink
ci: update actions version
Browse files Browse the repository at this point in the history
  • Loading branch information
bsdayo committed May 6, 2024
1 parent dd05c1d commit 2e9d388
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,15 @@ jobs:
url: ${{ steps.deployment.outputs.page_url }}

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0

- uses: pnpm/action-setup@v2
- uses: pnpm/action-setup@v3
with:
version: 9

- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version: 20
cache: pnpm
Expand All @@ -37,12 +37,12 @@ jobs:
- name: Build
run: pnpm run build

- uses: actions/configure-pages@v2
- uses: actions/configure-pages@v5

- uses: actions/upload-pages-artifact@v1
- uses: actions/upload-pages-artifact@v3
with:
path: .vitepress/dist

- name: Deploy
id: deployment
uses: actions/deploy-pages@v1
uses: actions/deploy-pages@v4

0 comments on commit 2e9d388

Please sign in to comment.