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 @@ -17,15 +17,15 @@ jobs:
17
17
runs-on : ubuntu-latest
18
18
steps :
19
19
- name : Checkout source code
20
- uses : actions/checkout@v2
20
+ uses : actions/checkout@v4
21
21
22
22
- name : Setup Node
23
- uses : actions/setup-node@v2
23
+ uses : actions/setup-node@v3
24
24
with :
25
25
node-version : 18.x
26
26
27
27
- name : Cache node_modules
28
- uses : actions/cache@v2
28
+ uses : actions/cache@v4
29
29
id : cache-npm-packages
30
30
with :
31
31
path : node_modules
@@ -41,15 +41,15 @@ jobs:
41
41
needs : prepare
42
42
steps :
43
43
- name : Checkout source code
44
- uses : actions/checkout@v2
44
+ uses : actions/checkout@v4
45
45
46
46
- name : Setup Node
47
- uses : actions/setup-node@v2
47
+ uses : actions/setup-node@v3
48
48
with :
49
49
node-version : 18.x
50
50
51
51
- name : Cache node_modules
52
- uses : actions/cache@v2
52
+ uses : actions/cache@v4
53
53
id : cache-npm-packages
54
54
with :
55
55
path : node_modules
@@ -70,15 +70,15 @@ jobs:
70
70
CI : true
71
71
steps :
72
72
- name : Checkout source code
73
- uses : actions/checkout@v2
73
+ uses : actions/checkout@v4
74
74
75
75
- name : Setup Node
76
- uses : actions/setup-node@v2
76
+ uses : actions/setup-node@v3
77
77
with :
78
78
node-version : 18.x
79
79
80
80
- name : Cache node_modules
81
- uses : actions/cache@v2
81
+ uses : actions/cache@v4
82
82
id : cache-npm-packages
83
83
with :
84
84
path : node_modules
Original file line number Diff line number Diff line change 82
82
tar -czf /tmp/rtl-build-$VERSION.tar.gz frontend backend rtl.js package.json package-lock.json
83
83
zip -r /tmp/rtl-build-$VERSION.zip frontend backend rtl.js package.json package-lock.json
84
84
85
- - uses : actions/upload-artifact@v3
85
+ - uses : actions/upload-artifact@v4
86
86
with :
87
87
name : rtl-build-${{ github.event.release.tag_name || github.event.inputs.version || '' }}
88
88
path : |
You can’t perform that action at this time.
0 commit comments