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/benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ jobs:
PY

- name: Upload benchmark artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: benchmark-snapshot-${{ github.sha }}
path: |
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ jobs:

- name: Upload startup baseline artifact
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: sk-python-startup-baseline
path: .benchmarks/sk-python-startup-baseline.json
Expand Down Expand Up @@ -325,7 +325,7 @@ jobs:

- name: Upload Playwright smoke report
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: e2e-smoke-report
path: |
Expand All @@ -335,7 +335,7 @@ jobs:

- name: Upload Playwright smoke test results
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: e2e-smoke-test-results
path: browse-ui/test-results/
Expand Down Expand Up @@ -395,7 +395,7 @@ jobs:

- name: Upload Playwright visual report
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: e2e-visual-report
path: |
Expand Down Expand Up @@ -466,7 +466,7 @@ jobs:

- name: Upload Playwright report (trace + screenshot evidence)
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: pairing-e2e-report
path: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/retro.yml
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ jobs:
PY

- name: Upload retro artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: retro-report
path: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sk-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ jobs:
python3 benchmark.py startup --runs 7 --warmups 2 --timeout 10 --baseline-file .benchmarks/sk-startup-baseline.json --regression-threshold 20 -- sk-rust/target/release/sk --help
- name: Upload startup benchmark baseline
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: sk-startup-baseline
path: .benchmarks/sk-startup-baseline.json
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sk-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ jobs:
$hash = (Get-FileHash "${{ matrix.archive }}" -Algorithm SHA256).Hash.ToLower()
"$hash ${{ matrix.archive }}" | Set-Content "${{ matrix.archive }}.sha256"

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v7
with:
name: ${{ matrix.archive }}
path: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/trend-scout.yml
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ jobs:

- name: Upload discovery explain artifact
if: ${{ always() }}
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: trend-scout-discovery-explain-${{ github.run_id }}
path: .trend-scout-discovery-explain.json
Expand Down
Loading