@@ -14,10 +14,10 @@ jobs:
14
14
15
15
steps :
16
16
- name : Checkout code
17
- uses : actions/checkout@v2
17
+ uses : actions/checkout@v3
18
18
19
19
- name : Set up Node
20
- uses : actions/setup-node@v2
20
+ uses : actions/setup-node@v3
21
21
with :
22
22
node-version : 16.x
23
23
cache : ' yarn'
37
37
- name : Pack
38
38
run : yarn pack
39
39
40
- - uses : actions/upload-artifact@v2
40
+ - uses : actions/upload-artifact@v3
41
41
with :
42
42
name : package
43
43
path : ./package.tgz
@@ -54,10 +54,10 @@ jobs:
54
54
ts : ['4.7', '4.8', '4.9', '5.0']
55
55
steps :
56
56
- name : Checkout repo
57
- uses : actions/checkout@v2
57
+ uses : actions/checkout@v3
58
58
59
59
- name : Use node ${{ matrix.node }}
60
- uses : actions/setup-node@v2
60
+ uses : actions/setup-node@v3
61
61
with :
62
62
node-version : ${{ matrix.node }}
63
63
cache : ' yarn'
@@ -88,10 +88,10 @@ jobs:
88
88
working-directory : ./examples/publish-ci/${{ matrix.example }}
89
89
steps :
90
90
- name : Checkout repo
91
- uses : actions/checkout@v2
91
+ uses : actions/checkout@v3
92
92
93
93
- name : Use node ${{ matrix.node }}
94
- uses : actions/setup-node@v2
94
+ uses : actions/setup-node@v3
95
95
with :
96
96
node-version : ${{ matrix.node }}
97
97
cache : ' yarn'
@@ -102,7 +102,7 @@ jobs:
102
102
- name : Remove existing React-Redux
103
103
run : yarn remove react-redux
104
104
105
- - uses : actions/download-artifact@v2
105
+ - uses : actions/download-artifact@v3
106
106
with :
107
107
name : package
108
108
path : ./examples/publish-ci/${{ matrix.example }}
0 commit comments