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:
114
114
115
115
- name : Upload compatibility report
116
116
if : needs.options.outputs.mode == 'report'
117
- uses : actions/upload-artifact@v3
117
+ uses : actions/upload-artifact@v4
118
118
with :
119
- name : compat
119
+ name : compat-${{ matrix.os }}-${{ matrix.toolchain.compiler }}-${{ matrix.toolchain.version }}
120
120
path : compat/*.csv
121
121
122
122
compat :
@@ -143,10 +143,11 @@ jobs:
143
143
run : pip install -r requirements.txt
144
144
145
145
- name : Download reports
146
- uses : actions/download-artifact@v3
146
+ uses : actions/download-artifact@v4
147
147
with :
148
- name : compat
148
+ pattern : compat-*
149
149
path : compat
150
+ merge-multiple : true
150
151
151
152
- name : Concatenate reports
152
153
run : |
@@ -160,7 +161,7 @@ jobs:
160
161
cat compat.md
161
162
162
163
- name : Upload artifacts
163
- uses : actions/upload-artifact@v3
164
+ uses : actions/upload-artifact@v4
164
165
with :
165
166
name : compat
166
167
path : |
You can’t perform that action at this time.
0 commit comments