@@ -30,10 +30,10 @@ jobs:
30
30
steps :
31
31
32
32
- name : Checkout main branch
33
- uses : actions/checkout@v2
33
+ uses : actions/checkout@v4
34
34
35
35
- name : Setup Node.js ${{ matrix.node-version }}
36
- uses : actions/setup-node@v2
36
+ uses : actions/setup-node@v4
37
37
with :
38
38
node-version : ${{ matrix.node-version }}
39
39
registry-url : " ${{ env.NPM_REGISTRY }}"
@@ -55,13 +55,13 @@ jobs:
55
55
NODE_AUTH_TOKEN : ${{ secrets.NPM_TOKEN }}
56
56
57
57
- name : Upload npm artifact
58
- uses : actions/upload-artifact@v2
58
+ uses : actions/upload-artifact@v4
59
59
with :
60
60
path : ${{ env.DIST_PATH }}
61
61
name : ${{ env.ARTIFACT_NAME }}
62
62
63
63
- name : Upload ng directives artifacts
64
- uses : actions/upload-artifact@v2
64
+ uses : actions/upload-artifact@v4
65
65
with :
66
66
path : ${{ env.DIST_PATH_NG }}
67
67
name : ${{ env.ARTIFACT_NAME_NG }}
95
95
steps :
96
96
97
97
- name : Checkout angular branch
98
- uses : actions/checkout@v2
98
+ uses : actions/checkout@v4
99
99
with :
100
100
ref : ngx-ezeep-js
101
101
@@ -106,13 +106,13 @@ jobs:
106
106
version : " ${{ env.MODULE_VERSION }}"
107
107
108
108
- name : download angular build artifact
109
- uses : actions/download-artifact@v2
109
+ uses : actions/download-artifact@v4
110
110
with :
111
111
name : ng-directives.zip
112
112
path : ezeep-js-angular/projects/ngx-ezeep-js/src/lib
113
113
114
114
- name : Setup Node.js ${{ matrix.node-version }}
115
- uses : actions/setup-node@v2
115
+ uses : actions/setup-node@v4
116
116
with :
117
117
node-version : ${{ matrix.node-version }}
118
118
registry-url : " ${{ env.NPM_REGISTRY }}"
@@ -141,7 +141,7 @@ jobs:
141
141
steps :
142
142
143
143
- name : Download npm artifact
144
- uses : actions/download-artifact@v2
144
+ uses : actions/download-artifact@v4
145
145
with :
146
146
name : ${{ env.ARTIFACT_NAME }}
147
147
path : " artifacts/v${{ env.MODULE_VERSION }}"
0 commit comments