|
17 | 17 | permissions:
|
18 | 18 | # Necessary to upload new release artifacts
|
19 | 19 | contents: write
|
| 20 | + issues: write |
20 | 21 |
|
21 | 22 | jobs:
|
22 | 23 | build-x86_64-linux-gnu:
|
|
59 | 60 | run: tar -cvzf barretenberg-x86_64-linux-gnu.tar.gz bb
|
60 | 61 |
|
61 | 62 | - name: Upload artifacts
|
62 |
| - uses: actions/upload-artifact@v2 |
| 63 | + uses: actions/upload-artifact@v4 |
63 | 64 | with:
|
64 | 65 | name: release-linux
|
65 | 66 | path: |
|
@@ -128,7 +129,7 @@ jobs:
|
128 | 129 | # NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
|
129 | 130 |
|
130 | 131 | - name: Upload artifacts
|
131 |
| - uses: actions/upload-artifact@v2 |
| 132 | + uses: actions/upload-artifact@v4 |
132 | 133 | with:
|
133 | 134 | name: release-wasm
|
134 | 135 | path: |
|
@@ -163,7 +164,7 @@ jobs:
|
163 | 164 | 7z a -ttar -so -an ./dist/* | 7z a -si ./barretenberg-x86_64-apple-darwin.tar.gz
|
164 | 165 |
|
165 | 166 | - name: Upload artifact
|
166 |
| - uses: actions/upload-artifact@v3 |
| 167 | + uses: actions/upload-artifact@v4 |
167 | 168 | with:
|
168 | 169 | name: barretenberg-x86_64-apple-darwin
|
169 | 170 | path: ./barretenberg/cpp/build/bin/barretenberg-x86_64-apple-darwin.tar.gz
|
@@ -195,7 +196,7 @@ jobs:
|
195 | 196 | 7z a -ttar -so -an ./dist/* | 7z a -si ./barretenberg-aarch64-apple-darwin.tar.gz
|
196 | 197 |
|
197 | 198 | - name: Upload artifact
|
198 |
| - uses: actions/upload-artifact@v3 |
| 199 | + uses: actions/upload-artifact@v4 |
199 | 200 | with:
|
200 | 201 | name: barretenberg-aarch64-apple-darwin
|
201 | 202 | path: ./barretenberg/cpp/build/bin/barretenberg-aarch64-apple-darwin.tar.gz
|
@@ -243,22 +244,22 @@ jobs:
|
243 | 244 | runs-on: ubuntu-latest
|
244 | 245 | steps:
|
245 | 246 | - name: Download files from Linux Runner
|
246 |
| - uses: actions/download-artifact@v2 |
| 247 | + uses: actions/download-artifact@v4 |
247 | 248 | with:
|
248 | 249 | name: release-linux
|
249 | 250 |
|
250 | 251 | - name: Download files for WASM
|
251 |
| - uses: actions/download-artifact@v2 |
| 252 | + uses: actions/download-artifact@v4 |
252 | 253 | with:
|
253 | 254 | name: release-wasm
|
254 | 255 |
|
255 | 256 | - name: Download files from x86_64 Mac Runner
|
256 |
| - uses: actions/download-artifact@v2 |
| 257 | + uses: actions/download-artifact@v4 |
257 | 258 | with:
|
258 | 259 | name: barretenberg-x86_64-apple-darwin
|
259 | 260 |
|
260 | 261 | - name: Download files from aarch64 Mac Runner
|
261 |
| - uses: actions/download-artifact@v2 |
| 262 | + uses: actions/download-artifact@v4 |
262 | 263 | with:
|
263 | 264 | name: barretenberg-aarch64-apple-darwin
|
264 | 265 |
|
|
0 commit comments