@@ -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
@@ -128,7 +128,7 @@ jobs:
128
128
runs-on : ubuntu-latest
129
129
steps :
130
130
- name : Checkout repo
131
- uses : actions/checkout@v2
131
+ uses : actions/checkout@v4
132
132
- name : Upload artifacts
133
133
uses : actions/upload-artifact@v4
134
134
with :
@@ -147,7 +147,7 @@ jobs:
147
147
- build-spec-versions
148
148
steps :
149
149
- name : Checkout repo
150
- uses : actions/checkout@v2
150
+ uses : actions/checkout@v4
151
151
- name : Create output directory
152
152
run : mkdir _output && cp document/index.html _output/index.html
153
153
- name : Download core spec artifact
@@ -187,7 +187,7 @@ jobs:
187
187
path : _output/versions
188
188
- name : Publish to GitHub Pages
189
189
if : github.ref == 'refs/heads/main'
190
- uses : peaceiris/actions-gh-pages@v3
190
+ uses : peaceiris/actions-gh-pages@v4
191
191
with :
192
192
publish_dir : ./_output
193
193
github_token : ${{ secrets.GITHUB_TOKEN }}
0 commit comments