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
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ jobs:
if: always()

- name: Upload security reports
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
if: always()
with:
name: security-reports
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ jobs:
sphinx-build -b html source build/html

- name: Upload documentation artifacts
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: documentation
path: docs/build/html/
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/performance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ jobs:

- name: Store benchmark results
if: always()
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: benchmark-results
path: benchmark_results.json
Expand Down Expand Up @@ -245,7 +245,7 @@ jobs:

- name: Upload memory profile results
if: always()
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: memory-profile-results
path: memory_profile_results.txt
Expand Down Expand Up @@ -345,7 +345,7 @@ jobs:

- name: Upload load test results
if: always()
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: load-test-results
path: load_test_report.html
2 changes: 1 addition & 1 deletion .github/workflows/pylint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ jobs:

- name: Upload Pylint reports
if: always()
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: pylint-reports-python-${{ matrix.python-version }}
path: |
Expand Down
Loading