Skip to content
Merged
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 @@ -46,7 +46,7 @@ jobs:
- run: python scripts/readiness/quality.py --base "$QUALITY_BASE"
- run: cargo machete --with-metadata
- run: python scripts/readiness/release_age.py --base "$QUALITY_BASE"
- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v7
if: always()
with:
name: source-quality
Expand Down Expand Up @@ -119,13 +119,13 @@ jobs:
run: cargo build --locked -p cortex-cli -p cortex-app-server
- name: Local functional QA and dynamic security tests
run: python3 scripts/readiness/qa.py
- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v7
if: always()
with:
name: test-performance
path: target/readiness/tests/
retention-days: 30
- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v7
if: always()
with:
name: local-qa
Expand Down Expand Up @@ -158,7 +158,7 @@ jobs:
mkdir -p target/readiness
cargo llvm-cov nextest --locked -p cortex-cli -p cortex-app-server -p cortex-common --profile ci --lcov --output-path target/readiness/lcov.info
- run: python3 scripts/readiness/coverage.py --base "$QUALITY_BASE"
- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v7
if: always()
with:
name: coverage
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,7 @@ jobs:
Compress-Archive -Path dist/* -DestinationPath "${{ matrix.artifact }}.zip"

- name: Upload artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: ${{ matrix.artifact }}
path: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-stability.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
with:
tool: cargo-nextest@0.9.102
- run: python3 scripts/readiness/tests.py --repeat 3
- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v7
if: always()
with:
name: test-stability
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/winget.yml
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ jobs:
WINGET_PAT: ${{ secrets.WINGET_PAT }}

- name: Upload manifests as artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: winget-manifests
path: manifests/
Loading