Skip to content
Open
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,14 +90,14 @@ jobs:
}

- name: Upload test results
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
if: always()
with:
name: test-results-${{ matrix.os }}
path: '**/TestResults/**/*.trx'

- name: Upload coverage reports
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
if: matrix.os == 'windows-latest'
with:
name: coverage-reports
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ jobs:
cd ../..

- name: Upload nightly artifact
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: nightly-${{ matrix.artifact_name }}-${{ github.run_number }}
path: ./nightly-${{ matrix.artifact_name }}-${{ github.run_number }}.zip
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/performance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:
--logger trx

- name: Upload performance test results
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
if: always()
with:
name: performance-test-results
Expand Down Expand Up @@ -96,7 +96,7 @@ jobs:
-- --filter '*' --exporters json

- name: Upload benchmark results
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
if: always()
with:
name: benchmark-results
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ jobs:
cd ../..

- name: Upload artifact
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: ${{ matrix.artifact_name }}
path: ./${{ matrix.artifact_name }}.zip
Expand Down
Loading