Skip to content
Merged
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/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Upload
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: Event File
path: ${{ github.event_path }}
Expand Down Expand Up @@ -97,7 +97,7 @@ jobs:
run: dotnet test --no-restore -- --results-directory ${{ github.workspace }}/test-results/ --report-xunit-trx
- name: Upload Test Results
if: always()
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: Test Results (${{ matrix.os }} ${{ matrix.configuration }} ${{ matrix.projectloadstyle }})
path: ${{ github.workspace }}/test-results/*
2 changes: 1 addition & 1 deletion .github/workflows/code-coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ jobs:
- name: Upload Test Results
if: always()
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: Code Coverage
path: coveragereport/*
6 changes: 3 additions & 3 deletions .github/workflows/package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ jobs:
- name: Pack
run: dotnet pack --no-build
- name: Upload
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: Unsigned
path: "artifacts/package/${{ env.Configuration }}/*"
Expand Down Expand Up @@ -148,7 +148,7 @@ jobs:
--azure-key-vault-certificate "${{ secrets.SignKeyVaultCertificate }}"
--azure-key-vault-url "${{ secrets.SignKeyVaultUrl }}"

- uses: actions/upload-artifact@v5
- uses: actions/upload-artifact@v6
with:
name: Signed
path: |
Expand Down Expand Up @@ -184,7 +184,7 @@ jobs:
run: >
echo ${{ github.event_name == 'release' }} >> release-info.txt
- name: Upload Release Info
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: release-info
path: release-info.txt
Loading