1- name : Build
1+ name : Release Build
22
33on :
44 create :
@@ -12,13 +12,13 @@ jobs:
1212 steps :
1313 - name : Checkout project
1414 id : checkout
15- uses : actions/checkout@v2
15+ uses : actions/checkout@v4
1616 with :
1717 fetch-depth : 0
1818
1919 - name : Cache src
2020 id : cache-src
21- uses : actions/upload-artifact@v2
21+ uses : actions/upload-artifact@v3
2222 with :
2323 name : repo
2424 path : ./*
2828 name : build for arm64v8
2929 runs-on : ubuntu-latest
3030 steps :
31- - uses : actions/download-artifact@v2
31+ - uses : actions/download-artifact@v3
3232 with :
3333 name : repo
3434 path : ./
5555
5656 - name : Cache arm64v8 artifacts
5757 id : cache-arm64v8-artifacts
58- uses : actions/upload-artifact@v2
58+ uses : actions/upload-artifact@v3
5959 with :
6060 name : arm64v8
6161 path : build/installers/*
6868 - name : mkdir installers
6969 run : mkdir -p ./build/installers
7070
71- - uses : actions/download-artifact@v2
71+ - uses : actions/download-artifact@v3
7272 with :
7373 name : arm64v8
7474 path : ./build/installers
9494 name : build for amd64
9595 needs : setup
9696 steps :
97- - uses : actions/download-artifact@v2
97+ - uses : actions/download-artifact@v3
9898 with :
9999 name : repo
100100 path : ./
@@ -116,7 +116,7 @@ jobs:
116116
117117 - name : Cache amd64 artifacts
118118 id : cache-amd64-artifacts
119- uses : actions/upload-artifact@v2
119+ uses : actions/upload-artifact@v3
120120 with :
121121 name : amd64
122122 path : |
@@ -131,7 +131,7 @@ jobs:
131131 - name : mkdir installers
132132 run : mkdir -p ./build/installers
133133
134- - uses : actions/download-artifact@v2
134+ - uses : actions/download-artifact@v3
135135 with :
136136 name : amd64
137137 path : ./
@@ -158,7 +158,7 @@ jobs:
158158 runs-on : ubuntu-latest
159159 needs : build_amd64
160160 steps :
161- - uses : actions/download-artifact@v2
161+ - uses : actions/download-artifact@v3
162162 with :
163163 path : ./
164164
@@ -191,7 +191,7 @@ jobs:
191191 runs-on : ubuntu-latest
192192 needs : release_amd64
193193 steps :
194- - uses : actions/download-artifact@v2
194+ - uses : actions/download-artifact@v3
195195 with :
196196 path : ./
197197
@@ -256,7 +256,7 @@ jobs:
256256 runs-on : ubuntu-latest
257257 needs : release_amd64
258258 steps :
259- - uses : actions/download-artifact@v2
259+ - uses : actions/download-artifact@v3
260260 with :
261261 path : ./
262262
0 commit comments