Skip to content

Commit b1e104c

Browse files
committed
update actions to v4
1 parent 3416982 commit b1e104c

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/deploy-docs.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,25 +31,25 @@ jobs:
3131
runs-on: ubuntu-latest
3232
steps:
3333
- name: Checkout
34-
uses: actions/checkout@v3
34+
uses: actions/checkout@v4
3535
with:
3636
fetch-depth: 0 # Not needed if lastUpdated is not enabled
3737
- name: Setup Node
38-
uses: actions/setup-node@v3
38+
uses: actions/setup-node@v4
3939
with:
4040
node-version: 18
4141
cache: yarn # or pnpm / yarn
4242
cache-dependency-path: 'docs/yarn.lock'
4343
- name: Setup Pages
44-
uses: actions/configure-pages@v3
44+
uses: actions/configure-pages@v4
4545
- name: Install dependencies
4646
run: yarn # or pnpm install / yarn install / bun install
4747
- name: Build with VitePress
4848
run: |
4949
yarn build
5050
touch .vitepress/dist/.nojekyll
5151
- name: Upload artifact
52-
uses: actions/upload-pages-artifact@v2
52+
uses: actions/upload-pages-artifact@v4
5353
with:
5454
path: docs/.vitepress/dist
5555

@@ -64,4 +64,4 @@ jobs:
6464
steps:
6565
- name: Deploy to GitHub Pages
6666
id: deployment
67-
uses: actions/deploy-pages@v2
67+
uses: actions/deploy-pages@v4

0 commit comments

Comments
 (0)