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
10 changes: 5 additions & 5 deletions .github/workflows/build-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,12 +50,12 @@ jobs:
#
- name: Upload artifacts
if: matrix.os == 'ubuntu-latest'
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: artifacts
path: ./artifacts
- name: Upload test results
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: test-results-${{ matrix.os }}
path: ./test-results
Expand Down Expand Up @@ -83,7 +83,7 @@ jobs:
- name: Run Integration Tests
run: dotnet test --configuration ${{env.BUILD_CONFIGURATION}} --filter "Category=Integration" --logger trx --results-directory integration-test-results
- name: Upload integration test results
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: integration-test-results
path: ./integration-test-results
Expand All @@ -102,7 +102,7 @@ jobs:
8.0.x
9.0.x
- name: Download artifacts
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
name: artifacts
path: ./artifacts
Expand All @@ -125,7 +125,7 @@ jobs:
8.0.x
9.0.x
- name: Download artifacts
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
name: artifacts
path: ./artifacts
Expand Down