File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -29,26 +29,26 @@ jobs:
2929 runs-on : ubuntu-latest
3030 steps :
3131 - name : Checkout
32- uses : actions/checkout@v3
32+ uses : actions/checkout@v4
3333 with :
3434 fetch-depth : 0 # Not needed if lastUpdated is not enabled
3535 # - uses: pnpm/action-setup@v2 # Uncomment this if you're using pnpm
3636 # - uses: oven-sh/setup-bun@v1 # Uncomment this if you're using Bun
3737 - name : Setup Node
38- uses : actions/setup-node@v3
38+ uses : actions/setup-node@v4
3939 with :
40- node-version : 18
40+ node-version : 20
4141 cache : npm # or pnpm / yarn
4242 - name : Setup Pages
43- uses : actions/configure-pages@v3
43+ uses : actions/configure-pages@v4
4444 - name : Install dependencies
4545 run : npm ci # or pnpm install / yarn install / bun install
4646 - name : Build with VitePress
4747 run : |
4848 npm run docs:build # or pnpm docs:build / yarn docs:build / bun run docs:build
4949 touch .vitepress/dist/.nojekyll
5050 - name : Upload artifact
51- uses : actions/upload-pages-artifact@v2
51+ uses : actions/upload-pages-artifact@v3
5252 with :
5353 path : .vitepress/dist
5454
6363 steps :
6464 - name : Deploy to GitHub Pages
6565 id : deployment
66- uses : actions/deploy-pages@v2
66+ uses : actions/deploy-pages@v3
You can’t perform that action at this time.
0 commit comments