Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ jobs:

- name: Upload
if: ${{ failure() }}
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: Documentation
path: _build/doc/sdk/valent
Expand Down Expand Up @@ -144,7 +144,7 @@ jobs:

- name: Report
if: ${{ failure() }}
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: Static Analysis (${{ matrix.suite }})
path: _build/meson-logs
Expand Down Expand Up @@ -195,14 +195,14 @@ jobs:

- name: Test Report
if: ${{ failure() }}
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: Tests (${{ matrix.compiler }}, ${{ matrix.suite }})
path: ${{ steps.test.outputs.log }}

- name: Coverage Report
if: ${{ matrix.compiler == 'gcc' && matrix.suite == 'test' }}
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: Tests (coverage)
path: ${{ steps.test.outputs.coverage-html }}
Expand Down Expand Up @@ -239,7 +239,7 @@ jobs:

- name: Test Report
if: ${{ failure() }}
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: Tests (Installed)
path: _build/meson-logs
Expand Down Expand Up @@ -316,7 +316,7 @@ jobs:

- name: Test Report
if: ${{ failure() }}
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: Flatpak (${{ matrix.suite }})
path: .flatpak-builder/build/valent/_flatpak_build/meson-logs
Expand Down
Loading