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 @@ -70,7 +70,7 @@ jobs:

- name: Upload coverage to artifacts
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: coverage-report
path: coverage.xml
2 changes: 1 addition & 1 deletion .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ jobs:

- name: Upload SARIF results
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: codeql-results-${{ matrix.language }}
path: sarif-results
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/dependency-review.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ jobs:
uv tool run safety check --file requirements-dev.txt --output text || true

- name: Upload safety results
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
if: always()
with:
name: safety-scan-results
Expand Down Expand Up @@ -122,7 +122,7 @@ jobs:
fi

- name: Upload license report
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: license-report
path: |
Expand Down Expand Up @@ -157,7 +157,7 @@ jobs:
echo "Current lock file is up to date" >> outdated-report.md

- name: Upload outdated report
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: outdated-report
path: outdated-report.md
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/performance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ jobs:

- name: Upload load test results
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: load-test-results
path: |
Expand Down Expand Up @@ -183,7 +183,7 @@ jobs:

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

- name: Upload memory profiling results
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: memory-profiling-results
path: |
Expand Down Expand Up @@ -313,7 +313,7 @@ jobs:

- name: Upload k6 results
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: k6-results
path: k6-results.json
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ jobs:
uv run pytest tests/ -v --tb=short --cov=src --cov-report=xml --cov-report=term --cov-report=html

- name: Upload coverage report
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: coverage-report-${{ matrix.python-version }}
path: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ jobs:
uv build

- name: Upload artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: release-artifacts
path: dist/*
Expand Down Expand Up @@ -189,7 +189,7 @@ jobs:
} >> $GITHUB_OUTPUT

- name: Upload changelog
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: changelog
path: CHANGELOG.md
Expand Down
Loading