@@ -147,7 +147,7 @@ jobs:
147
147
if : steps.prerelease.outputs.IS_PRE != 'true'
148
148
149
149
- name : Upload artifacts
150
- uses : actions/upload-artifact@v3
150
+ uses : actions/upload-artifact@v4
151
151
with :
152
152
name : ${{ env.PROJECT_NAME }}-${{ matrix.os }}-${{ matrix.arch }}
153
153
path : |
@@ -174,7 +174,7 @@ jobs:
174
174
token : ${{ secrets.ARDUINO_CREATE_AGENT_CI_PAT }}
175
175
176
176
- name : Download artifact
177
- uses : actions/download-artifact@v3
177
+ uses : actions/download-artifact@v4
178
178
with :
179
179
name : ${{ env.PROJECT_NAME }}-macos-12-amd64 # if we want to support darwin-arm64 in the future for real this has to change.
180
180
path : ${{ env.EXE_PATH }}
@@ -218,7 +218,7 @@ jobs:
218
218
run : tar -cvf ArduinoCreateAgent.app_${{ matrix.arch }}.tar -C skel/ .
219
219
220
220
- name : Upload artifacts
221
- uses : actions/upload-artifact@v3
221
+ uses : actions/upload-artifact@v4
222
222
with :
223
223
if-no-files-found : error
224
224
name : ArduinoCreateAgent.app_${{ matrix.arch }}
@@ -241,7 +241,7 @@ jobs:
241
241
242
242
steps :
243
243
- name : Download artifact
244
- uses : actions/download-artifact@v3
244
+ uses : actions/download-artifact@v4
245
245
with :
246
246
name : ArduinoCreateAgent.app_${{ matrix.arch }}
247
247
@@ -356,7 +356,7 @@ jobs:
356
356
if : ${{ needs.build.outputs.prerelease != 'true' }}
357
357
358
358
- name : Upload artifact
359
- uses : actions/upload-artifact@v3
359
+ uses : actions/upload-artifact@v4
360
360
with :
361
361
name : ArduinoCreateAgent.app_${{ matrix.arch }}_notarized
362
362
path : ArduinoCreateAgent.app_${{ matrix.arch }}_notarized.zip
@@ -405,7 +405,7 @@ jobs:
405
405
token : ${{ secrets.ARDUINO_CREATE_AGENT_CI_PAT }}
406
406
407
407
- name : Download artifact
408
- uses : actions/download-artifact@v3
408
+ uses : actions/download-artifact@v4
409
409
with :
410
410
name : ${{ env.PROJECT_NAME }}-${{ matrix.os }}-${{ matrix.arch }}
411
411
path : artifacts/${{ matrix.platform-name }}/ # path expected by installbuilder
@@ -429,7 +429,7 @@ jobs:
429
429
if : matrix.os == 'ubuntu-20.04'
430
430
431
431
- name : Upload artifacts
432
- uses : actions/upload-artifact@v3
432
+ uses : actions/upload-artifact@v4
433
433
with :
434
434
name : ArduinoCreateAgent-${{ matrix.platform-name }}-${{ matrix.arch }}
435
435
path : ArduinoCreateAgent*
@@ -456,7 +456,7 @@ jobs:
456
456
457
457
steps :
458
458
- name : Download artifact
459
- uses : actions/download-artifact@v3
459
+ uses : actions/download-artifact@v4
460
460
with :
461
461
name : ArduinoCreateAgent-windows-${{ matrix.arch }}
462
462
@@ -472,7 +472,7 @@ jobs:
472
472
"${{ env.SIGNTOOL_PATH }}" sign -d "Arduino Create Agent" -f ${{ env.INSTALLER_CERT_WINDOWS_CER}} -csp "eToken Base Cryptographic Provider" -k "[{{${{ env.CERT_PASSWORD }}}}]=${{ env.CONTAINER_NAME }}" -fd sha256 -tr http://timestamp.digicert.com -td SHA256 -v "ArduinoCreateAgent-${GITHUB_REF##*/}-windows-${{ matrix.arch }}-installer.exe"
473
473
474
474
- name : Upload artifacts
475
- uses : actions/upload-artifact@v3
475
+ uses : actions/upload-artifact@v4
476
476
with :
477
477
if-no-files-found : error
478
478
name : ArduinoCreateAgent-windows-${{ matrix.arch }}-signed
@@ -494,7 +494,7 @@ jobs:
494
494
token : ${{ secrets.ARDUINO_CREATE_AGENT_CI_PAT }}
495
495
496
496
- name : Download artifact
497
- uses : actions/download-artifact@v3
497
+ uses : actions/download-artifact@v4
498
498
with :
499
499
name : ArduinoCreateAgent.app_${{ matrix.arch }}_notarized
500
500
path : ArduinoCreateAgent.app
@@ -570,7 +570,7 @@ jobs:
570
570
run : tar -cvf ArduinoCreateAgent-${GITHUB_REF##*/}-osx-${{ matrix.arch }}-installer.tar ArduinoCreateAgent-${GITHUB_REF##*/}-osx-${{ matrix.arch }}-installer.dmg
571
571
572
572
- name : Upload artifacts
573
- uses : actions/upload-artifact@v3
573
+ uses : actions/upload-artifact@v4
574
574
with :
575
575
name : ArduinoCreateAgent-osx-${{ matrix.arch }}
576
576
path : ArduinoCreateAgent*.tar
@@ -588,7 +588,7 @@ jobs:
588
588
fetch-depth : 0 # fetch all history for the create changelog step to work properly
589
589
590
590
- name : Download artifact
591
- uses : actions/download-artifact@v3 # download all the artifacts
591
+ uses : actions/download-artifact@v4 # download all the artifacts
592
592
593
593
# mandatory step because upload-release-action does not support multiple folders
594
594
- name : prepare artifacts for the release
0 commit comments