Skip to content

Commit

Permalink
upload/download-artifact@v4
Browse files Browse the repository at this point in the history
  • Loading branch information
wpbonelli committed Feb 1, 2025
1 parent fd357db commit 02eb732
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -114,9 +114,9 @@ jobs:
- name: Upload compatibility report
if: needs.options.outputs.mode == 'report'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: compat
name: compat-${{ matrix.os }}-${{ matrix.toolchain.compiler }}-${{ matrix.toolchain.version }}
path: compat/*.csv

compat:
Expand All @@ -143,10 +143,11 @@ jobs:
run: pip install -r requirements.txt

- name: Download reports
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: compat
pattern: compat-*
path: compat
merge-multiple: true

- name: Concatenate reports
run: |
Expand All @@ -160,7 +161,7 @@ jobs:
cat compat.md
- name: Upload artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: compat
path: |
Expand Down

0 comments on commit 02eb732

Please sign in to comment.