File tree 1 file changed +13
-13
lines changed
1 file changed +13
-13
lines changed Original file line number Diff line number Diff line change @@ -38,16 +38,16 @@ jobs:
38
38
runs-on : ubuntu-latest
39
39
steps :
40
40
- name : Checkout
41
- uses : actions/checkout@v2
41
+ uses : actions/checkout@v4
42
42
43
43
- name : Setup Node.js
44
- uses : actions/setup-node@v1
44
+ uses : actions/setup-node@v4
45
45
with :
46
- node-version : ' 12 '
46
+ node-version : ' 20 '
47
47
48
48
- name : Cache NPM dependencies
49
49
id : npm-cache
50
- uses : actions/cache@v2
50
+ uses : actions/cache@v3
51
51
with :
52
52
path : ~/.npm
53
53
key : ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
@@ -65,16 +65,16 @@ jobs:
65
65
runs-on : ubuntu-latest
66
66
steps :
67
67
- name : Checkout
68
- uses : actions/checkout@v2
68
+ uses : actions/checkout@v4
69
69
70
70
- name : Setup Node.js
71
- uses : actions/setup-node@v1
71
+ uses : actions/setup-node@v4
72
72
with :
73
- node-version : ' 12 '
73
+ node-version : ' 20 '
74
74
75
75
- name : Cache NPM dependencies
76
76
id : npm-cache
77
- uses : actions/cache@v2
77
+ uses : actions/cache@v3
78
78
with :
79
79
path : ~/.npm
80
80
key : ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
89
89
run : npm run build
90
90
91
91
- name : Upload artifacts
92
- uses : actions/upload-artifact@v2
92
+ uses : actions/upload-artifact@v3
93
93
with :
94
94
name : package
95
95
path : |
@@ -101,15 +101,15 @@ jobs:
101
101
runs-on : ubuntu-latest
102
102
steps :
103
103
- name : Checkout
104
- uses : actions/checkout@v2
104
+ uses : actions/checkout@v4
105
105
106
106
- name : Setup Node.js
107
- uses : actions/setup-node@v1
107
+ uses : actions/setup-node@v4
108
108
with :
109
- node-version : ' 12 '
109
+ node-version : ' 20 '
110
110
111
111
- name : Download artifacts
112
- uses : actions/download-artifact@v2
112
+ uses : actions/download-artifact@v3
113
113
with :
114
114
name : package
115
115
path : ~/build
You can’t perform that action at this time.
0 commit comments