Skip to content
Closed
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
5 changes: 3 additions & 2 deletions .github/workflows/agents-81-gate-followups.yml
Original file line number Diff line number Diff line change
Expand Up @@ -434,7 +434,7 @@ jobs:
echo "$metrics_json" >> keepalive-metrics.ndjson

- name: Upload keepalive metrics artifact
uses: actions/upload-artifact@v7
uses: actions/upload-artifact@v6
with:
name: keepalive-metrics
path: keepalive-metrics.ndjson
Expand Down Expand Up @@ -630,6 +630,7 @@ jobs:
with:
sparse-checkout: |
.github/scripts/prompt_injection_guard.js
.github/scripts/github-rate-limited-wrapper.js
.github/scripts/github-api-with-retry.js
.github/scripts/token_load_balancer.js
.github/scripts/agent_registry.js
Expand Down Expand Up @@ -1269,7 +1270,7 @@ jobs:
PY

- name: Upload metrics artifact
uses: actions/upload-artifact@v7
uses: actions/upload-artifact@v6
with:
name: agents-autofix-metrics
path: autofix-metrics.ndjson
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/agents-auto-pilot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3154,7 +3154,7 @@ jobs:
# ── Upload auto-pilot metrics for weekly aggregation ───────────
- name: Upload auto-pilot metrics
if: always()
uses: actions/upload-artifact@v7
uses: actions/upload-artifact@v6
continue-on-error: true
with:
name: autopilot-metrics-${{ github.run_id }}-${{ github.run_attempt }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/agents-autofix-loop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -930,7 +930,7 @@ jobs:
PY

- name: Upload metrics artifact
uses: actions/upload-artifact@v7
uses: actions/upload-artifact@v6
with:
name: agents-autofix-metrics
path: autofix-metrics.ndjson
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/agents-keepalive-loop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -383,7 +383,7 @@ jobs:
steps.evaluate.outputs.action == 'run' ||
steps.evaluate.outputs.action == 'fix' ||
steps.evaluate.outputs.action == 'conflict'
uses: actions/upload-artifact@v7
uses: actions/upload-artifact@v6
with:
name: keepalive-task-appendix-${{ steps.evaluate.outputs.pr_number }}
path: /tmp/keepalive-artifacts/task-appendix.txt
Expand Down Expand Up @@ -952,7 +952,7 @@ jobs:
echo "$metrics_json" >> keepalive-metrics.ndjson

- name: Upload keepalive metrics artifact
uses: actions/upload-artifact@v7
uses: actions/upload-artifact@v6
with:
name: keepalive-metrics
path: keepalive-metrics.ndjson
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/agents-weekly-metrics.yml
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ jobs:
python scripts/aggregate_agent_metrics.py

- name: Upload weekly summary
uses: actions/upload-artifact@v7
uses: actions/upload-artifact@v6
with:
name: agent-weekly-metrics
path: agent-weekly-metrics.md
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/maint-coverage-guard.yml
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ jobs:

- name: Download coverage trend artifact
if: ${{ steps.discover.outputs.run_id }}
uses: actions/download-artifact@v8
uses: actions/download-artifact@v7
continue-on-error: true
with:
name: gate-coverage-trend
Expand All @@ -196,7 +196,7 @@ jobs:

- name: Download coverage payload artifact
if: ${{ steps.discover.outputs.run_id }}
uses: actions/download-artifact@v8
uses: actions/download-artifact@v7
continue-on-error: true
with:
name: gate-coverage
Expand Down
Loading