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
6 changes: 3 additions & 3 deletions .github/workflows/integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ jobs:

- name: Upload HTML coverage report
if: always()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v5
with:
name: coverage-report
path: htmlcov/
Expand Down Expand Up @@ -273,7 +273,7 @@ jobs:

- name: Upload test report
if: always()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v5
with:
name: e2e-test-report
path: report.html
Expand Down Expand Up @@ -313,7 +313,7 @@ jobs:

- name: Upload Bandit report
if: always()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v5
with:
name: bandit-report
path: bandit-report.json
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:

- name: Archive lint reports
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: lint-reports
path: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
fail_ci_if_error: false

- name: Archive coverage reports
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
if: matrix.python-version == '3.11'
with:
name: coverage-reports
Expand Down
Loading