Skip to content

Commit 02eb732

Browse files
committed
upload/download-artifact@v4
1 parent fd357db commit 02eb732

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

.github/workflows/test.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff 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: |

0 commit comments

Comments
 (0)