File tree Expand file tree Collapse file tree 1 file changed +6
-5
lines changed
Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -114,9 +114,9 @@ jobs:
114114
115115 - name : Upload compatibility report
116116 if : needs.options.outputs.mode == 'report'
117- uses : actions/upload-artifact@v3
117+ uses : actions/upload-artifact@v4
118118 with :
119- name : compat
119+ name : compat-${{ matrix.os }}-${{ matrix.toolchain.compiler }}-${{ matrix.toolchain.version }}
120120 path : compat/*.csv
121121
122122 compat :
@@ -143,10 +143,11 @@ jobs:
143143 run : pip install -r requirements.txt
144144
145145 - name : Download reports
146- uses : actions/download-artifact@v3
146+ uses : actions/download-artifact@v4
147147 with :
148- name : compat
148+ pattern : compat-*
149149 path : compat
150+ merge-multiple : true
150151
151152 - name : Concatenate reports
152153 run : |
@@ -160,7 +161,7 @@ jobs:
160161 cat compat.md
161162
162163 - name : Upload artifacts
163- uses : actions/upload-artifact@v3
164+ uses : actions/upload-artifact@v4
164165 with :
165166 name : compat
166167 path : |
You can’t perform that action at this time.
0 commit comments