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

- name: Upload test results
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: test-results-${{ matrix.service }}
path: coverage/test-results-${{ matrix.service }}.trx

- name: Upload coverage reports
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: coverage-${{ matrix.service }}
path: coverage/**/coverage.opencover.xml
Expand Down Expand Up @@ -208,7 +208,7 @@ jobs:

- name: Upload integration test results
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: integration-test-results
path: coverage-integration/integration-test-results.trx
Expand Down Expand Up @@ -249,7 +249,7 @@ jobs:
fail_ci_if_error: false

- name: Upload coverage report
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: coverage-report
path: ./coverage-report
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/deploy-staging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ jobs:

- name: Upload test results
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: integration-test-results
path: test-results/
Expand Down Expand Up @@ -255,7 +255,7 @@ jobs:

- name: Upload performance results
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: performance-results
path: |
Expand Down Expand Up @@ -323,7 +323,7 @@ jobs:

- name: Upload E2E test results
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: e2e-test-results
path: test-results/
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/docker-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ jobs:

- name: Upload SBOM artifact
if: github.event_name != 'pull_request'
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: sbom-${{ matrix.service.name }}
path: sbom-${{ matrix.service.name }}.json
Expand Down Expand Up @@ -211,7 +211,7 @@ jobs:
EOF

- name: Upload manifest
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: deployment-manifest
path: manifest.json
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/quality-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ jobs:
fi

- name: Upload coverage report
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: coverage-report
path: ./coverage-report
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ jobs:
fi

- name: Upload test results
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
if: always()
with:
name: test-results-${{ matrix.service }}
Expand Down Expand Up @@ -173,7 +173,7 @@ jobs:
--artifacts ./BenchmarkDotNet.Artifacts

- name: Upload benchmark results
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: benchmark-results
path: BenchmarkDotNet.Artifacts/results/
Expand Down Expand Up @@ -224,14 +224,14 @@ jobs:
BASE_URL: http://localhost:3000

- name: Upload test results
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
if: always()
with:
name: e2e-test-results
path: tests/E2ETests/test-results/

- name: Upload Playwright report
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
if: always()
with:
name: playwright-report
Expand Down Expand Up @@ -265,7 +265,7 @@ jobs:
BASE_URL: http://localhost:8080

- name: Upload load test results
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: load-test-results
path: |
Expand Down Expand Up @@ -312,7 +312,7 @@ jobs:
--enableRetired

- name: Upload security reports
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: security-reports
path: reports/
Expand Down Expand Up @@ -364,7 +364,7 @@ jobs:
-historydir:"./coverage-history"

- name: Upload coverage report
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: coverage-report
path: ./coverage-report
Expand Down