File tree 1 file changed +5
-4
lines changed
1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -71,13 +71,13 @@ jobs:
71
71
file-url : https://raw.githubusercontent.com/arduino/tooling-project-assets/main/workflow-templates/assets/sync-labels/${{ matrix.filename }}
72
72
73
73
- name : Pass configuration files to next job via workflow artifact
74
- uses : actions/upload-artifact@v3
74
+ uses : actions/upload-artifact@v4
75
75
with :
76
76
path : |
77
77
*.yaml
78
78
*.yml
79
79
if-no-files-found : error
80
- name : ${{ env.CONFIGURATIONS_ARTIFACT }}
80
+ name : ${{ env.CONFIGURATIONS_ARTIFACT }}-${{ matrix.filename }}
81
81
82
82
sync :
83
83
needs : download
@@ -109,10 +109,11 @@ jobs:
109
109
uses : actions/checkout@v4
110
110
111
111
- name : Download configuration files artifact
112
- uses : actions/download-artifact@v3
112
+ uses : actions/download-artifact@v4
113
113
with :
114
- name : ${{ env.CONFIGURATIONS_ARTIFACT }}
114
+ pattern : ${{ env.CONFIGURATIONS_ARTIFACT }}-* # Download all configuration files
115
115
path : ${{ env.CONFIGURATIONS_FOLDER }}
116
+ merge-multiple : true
116
117
117
118
- name : Remove unneeded artifact
118
119
uses : geekyeggo/delete-artifact@v5
You can’t perform that action at this time.
0 commit comments