@@ -17,11 +17,11 @@ jobs:
17
17
runs-on : ubuntu-latest
18
18
steps :
19
19
- name : Checkout repo
20
- uses : actions/checkout@v2
20
+ uses : actions/checkout@v4
21
21
with :
22
22
submodules : " recursive"
23
23
- name : Setup Node.js
24
- uses : actions/setup-node@v3
24
+ uses : actions/setup-node@v4
25
25
with :
26
26
node-version : 16
27
27
- name : Setup Bikeshed
44
44
runs-on : ubuntu-latest
45
45
steps :
46
46
- name : Checkout repo
47
- uses : actions/checkout@v2
47
+ uses : actions/checkout@v4
48
48
- name : Setup Bikeshed
49
49
run : pip install bikeshed && bikeshed update
50
50
- name : Run Bikeshed
59
59
runs-on : ubuntu-latest
60
60
steps :
61
61
- name : Checkout repo
62
- uses : actions/checkout@v2
62
+ uses : actions/checkout@v4
63
63
- name : Setup Bikeshed
64
64
run : pip install bikeshed && bikeshed update
65
65
- name : Run Bikeshed
74
74
runs-on : ubuntu-latest
75
75
steps :
76
76
- name : Checkout repo
77
- uses : actions/checkout@v2
77
+ uses : actions/checkout@v4
78
78
- name : Upload artifacts
79
79
uses : actions/upload-artifact@v4
80
80
with :
86
86
needs : [build-core-spec, build-js-api-spec, build-web-api-spec, build-spec-versions]
87
87
steps :
88
88
- name : Checkout repo
89
- uses : actions/checkout@v2
89
+ uses : actions/checkout@v4
90
90
- name : Create output directory
91
91
run : mkdir _output && cp document/index.html _output/index.html
92
92
- name : Download core spec artifact
@@ -111,7 +111,7 @@ jobs:
111
111
path : _output/versions
112
112
- name : Publish to GitHub Pages
113
113
if : github.ref == 'refs/heads/main'
114
- uses : peaceiris/actions-gh-pages@v3
114
+ uses : peaceiris/actions-gh-pages@v4
115
115
with :
116
116
publish_dir : ./_output
117
117
github_token : ${{ secrets.GITHUB_TOKEN }}
0 commit comments