File tree Expand file tree Collapse file tree 2 files changed +10
-10
lines changed Expand file tree Collapse file tree 2 files changed +10
-10
lines changed Original file line number Diff line number Diff line change 10
10
lint :
11
11
runs-on : ubuntu-latest
12
12
steps :
13
- - uses : actions/checkout@v3
14
- - uses : actions/setup-node@v3
13
+ - uses : actions/checkout@v4
14
+ - uses : actions/setup-node@v4
15
15
with :
16
16
node-version : 20.x
17
17
cache : " npm"
23
23
test :
24
24
runs-on : ubuntu-latest
25
25
steps :
26
- - uses : actions/checkout@v3
27
- - uses : actions/setup-node@v3
26
+ - uses : actions/checkout@v4
27
+ - uses : actions/setup-node@v4
28
28
with :
29
29
node-version : 20.x
30
30
cache : " npm"
Original file line number Diff line number Diff line change @@ -17,23 +17,23 @@ concurrency:
17
17
18
18
jobs :
19
19
build :
20
- runs-on : ubuntu-22.04
20
+ runs-on : ubuntu-latest
21
21
environment :
22
22
name : github-pages
23
23
url : ${{ steps.deployment.outputs.page_url }}
24
24
25
25
steps :
26
- - uses : actions/checkout@v3
26
+ - uses : actions/checkout@v4
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 : 20.x
32
32
cache : " npm"
33
33
cache-dependency-path : " package-lock.json"
34
34
35
35
- name : Set up Python 3.10
36
- uses : actions/setup-python@v4
36
+ uses : actions/setup-python@v5
37
37
with :
38
38
python-version : " 3.10"
39
39
@@ -54,10 +54,10 @@ jobs:
54
54
working-directory : docs
55
55
56
56
- name : Upload pages as an artifact
57
- uses : actions/upload-pages-artifact@v1
57
+ uses : actions/upload-pages-artifact@v3
58
58
with :
59
59
path : docs/site
60
60
61
61
- name : Deploy to GitHub Pages
62
62
id : deployment
63
- uses : actions/deploy-pages@v1
63
+ uses : actions/deploy-pages@v4
You can’t perform that action at this time.
0 commit comments