File tree Expand file tree Collapse file tree 10 files changed +22
-22
lines changed Expand file tree Collapse file tree 10 files changed +22
-22
lines changed Original file line number Diff line number Diff line change @@ -24,13 +24,13 @@ jobs:
24
24
runs-on : ${{ matrix.os }}
25
25
26
26
steps :
27
- - uses : actions/checkout@v3
27
+ - uses : actions/checkout@v4
28
28
29
29
- name : Install pnpm
30
30
uses : pnpm/action-setup@v2
31
31
32
32
- name : Use Node.js ${{ matrix.node }}
33
- uses : actions/setup-node@v3
33
+ uses : actions/setup-node@v4
34
34
with :
35
35
node-version : ${{ matrix.node }}
36
36
cache : pnpm
Original file line number Diff line number Diff line change @@ -23,13 +23,13 @@ jobs:
23
23
runs-on : ${{ matrix.os }}
24
24
25
25
steps :
26
- - uses : actions/checkout@v3
26
+ - uses : actions/checkout@v4
27
27
28
28
- name : Install pnpm
29
29
uses : pnpm/action-setup@v2
30
30
31
31
- name : Use Node.js ${{ matrix.node }}
32
- uses : actions/setup-node@v3
32
+ uses : actions/setup-node@v4
33
33
with :
34
34
node-version : ${{ matrix.node }}
35
35
cache : pnpm
Original file line number Diff line number Diff line change @@ -20,13 +20,13 @@ jobs:
20
20
NODE_VERSION : ' 18'
21
21
22
22
steps :
23
- - uses : actions/checkout@v3
23
+ - uses : actions/checkout@v4
24
24
25
25
- name : Install pnpm
26
26
uses : pnpm/action-setup@v2
27
27
28
28
- name : Setup Node.js
29
- uses : actions/setup-node@v3
29
+ uses : actions/setup-node@v4
30
30
with :
31
31
node-version : ${{ env.NODE_VERSION }}
32
32
cache : pnpm
Original file line number Diff line number Diff line change @@ -17,15 +17,15 @@ jobs:
17
17
NODE_VERSION : ' 18'
18
18
19
19
steps :
20
- - uses : actions/checkout@v3
20
+ - uses : actions/checkout@v4
21
21
with :
22
22
fetch-depth : 0
23
23
24
24
- name : Install pnpm
25
25
uses : pnpm/action-setup@v2
26
26
27
27
- name : Setup Node.js
28
- uses : actions/setup-node@v3
28
+ uses : actions/setup-node@v4
29
29
with :
30
30
node-version : ${{ env.NODE_VERSION }}
31
31
cache : pnpm
37
37
run : pnpm docs:release
38
38
39
39
- name : Deploy to GitHub Pages
40
- uses : crazy-max/ghaction-github-pages@v2.2.0
40
+ uses : crazy-max/ghaction-github-pages@v4
41
41
with :
42
42
repo : vuepress/vuepress.github.io
43
43
target_branch : main
Original file line number Diff line number Diff line change 10
10
if : contains(github.event.issue.labels.*.name, 'stale')
11
11
runs-on : ubuntu-latest
12
12
steps :
13
- - uses : actions-cool/issues-helper@v2
13
+ - uses : actions-cool/issues-helper@v3
14
14
with :
15
15
actions : ' remove-labels'
16
16
token : ${{ secrets.GITHUB_TOKEN }}
Original file line number Diff line number Diff line change 9
9
name : label stale issues
10
10
runs-on : ubuntu-latest
11
11
steps :
12
- - uses : actions-cool/issues-helper@v2
12
+ - uses : actions-cool/issues-helper@v3
13
13
with :
14
14
actions : ' check-inactive'
15
15
token : ${{ secrets.GITHUB_TOKEN }}
23
23
name : close stale issues
24
24
runs-on : ubuntu-latest
25
25
steps :
26
- - uses : actions-cool/issues-helper@v2
26
+ - uses : actions-cool/issues-helper@v3
27
27
with :
28
28
actions : ' close-issues'
29
29
token : ${{ secrets.GITHUB_TOKEN }}
34
34
name : close need-reproduction issues
35
35
runs-on : ubuntu-latest
36
36
steps :
37
- - uses : actions-cool/issues-helper@v2
37
+ - uses : actions-cool/issues-helper@v3
38
38
with :
39
39
actions : ' close-issues'
40
40
token : ${{ secrets.GITHUB_TOKEN }}
Original file line number Diff line number Diff line change 10
10
if : github.event.label.name == 'invalid'
11
11
runs-on : ubuntu-latest
12
12
steps :
13
- - uses : actions-cool/issues-helper@v2
13
+ - uses : actions-cool/issues-helper@v3
14
14
with :
15
15
actions : ' close-issue, create-comment'
16
16
token : ${{ secrets.GITHUB_TOKEN }}
22
22
if : github.event.label.name == 'need reproduction'
23
23
runs-on : ubuntu-latest
24
24
steps :
25
- - uses : actions-cool/issues-helper@v2
25
+ - uses : actions-cool/issues-helper@v3
26
26
with :
27
27
actions : ' create-comment'
28
28
token : ${{ secrets.GITHUB_TOKEN }}
Original file line number Diff line number Diff line change 11
11
runs-on : ubuntu-latest
12
12
13
13
steps :
14
- - uses : actions/checkout@v3
14
+ - uses : actions/checkout@v4
15
15
with :
16
16
fetch-depth : 0
17
17
Original file line number Diff line number Diff line change 43
43
runs-on : ubuntu-latest
44
44
45
45
steps :
46
- - uses : actions/checkout@v3
46
+ - uses : actions/checkout@v4
47
47
with :
48
48
# fetch all commits to get last updated time or other git log info
49
49
fetch-depth : 0
57
57
run_install : true
58
58
59
59
- name : Setup Node.js
60
- uses : actions/setup-node@v3
60
+ uses : actions/setup-node@v4
61
61
with :
62
62
# choose node.js version to use
63
63
node-version : 18
71
71
# please check out the docs of the workflow for more details
72
72
# @see https://github.com/crazy-max/ghaction-github-pages
73
73
- name : Deploy to GitHub Pages
74
- uses : crazy-max/ghaction-github-pages@v2
74
+ uses : crazy-max/ghaction-github-pages@v4
75
75
with :
76
76
# deploy to gh-pages branch
77
77
target_branch : gh-pages
Original file line number Diff line number Diff line change 43
43
runs-on : ubuntu-latest
44
44
45
45
steps :
46
- - uses : actions/checkout@v3
46
+ - uses : actions/checkout@v4
47
47
with :
48
48
# “最近更新时间” 等 git 日志相关信息,需要拉取全部提交记录
49
49
fetch-depth : 0
57
57
run_install : true
58
58
59
59
- name : Setup Node.js
60
- uses : actions/setup-node@v3
60
+ uses : actions/setup-node@v4
61
61
with :
62
62
# 选择要使用的 node 版本
63
63
node-version : 18
71
71
# 查看 workflow 的文档来获取更多信息
72
72
# @see https://github.com/crazy-max/ghaction-github-pages
73
73
- name : Deploy to GitHub Pages
74
- uses : crazy-max/ghaction-github-pages@v2
74
+ uses : crazy-max/ghaction-github-pages@v4
75
75
with :
76
76
# 部署到 gh-pages 分支
77
77
target_branch : gh-pages
You can’t perform that action at this time.
0 commit comments