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
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,14 +47,14 @@ jobs:

- name: Upload test results
if: always()
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: dotnet-test-results
path: '**/TestResults/**/*.trx'

- name: Upload code coverage
if: always()
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: dotnet-code-coverage
path: '**/TestResults/**/coverage.cobertura.xml'
Expand All @@ -77,7 +77,7 @@ jobs:
format: spdx-json

- name: Upload SBOMs
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: dotnet-sboms
path: '*.spdx.json'
Expand Down Expand Up @@ -126,7 +126,7 @@ jobs:
format: spdx-json

- name: Upload SBOM
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: nextjs-sbom
path: sbom-admin-ui.spdx.json
Expand Down Expand Up @@ -259,7 +259,7 @@ jobs:
format: spdx-json

- name: Upload container SBOM
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: sbom-${{ matrix.name }}-image
path: sbom-${{ matrix.name }}-image.spdx.json
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/code-quality.yml
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ jobs:
-reporttypes:'Html;Cobertura'

- name: Upload coverage report
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: coverage-report
path: ./coverage/report
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ jobs:
format: spdx-json

- name: Upload SBOM to release
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: sbom-${{ matrix.name }}-release
path: sbom-${{ matrix.name }}-${{ steps.version.outputs.version }}.spdx.json
Expand Down
Loading