Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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/agents-autofix-loop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -492,7 +492,7 @@ jobs:
PY

- name: Upload metrics artifact
uses: actions/upload-artifact@v4
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-keepalive-loop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -419,7 +419,7 @@ jobs:
echo "$metrics_json" >> keepalive-metrics.ndjson

- name: Upload keepalive metrics artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: keepalive-metrics
path: keepalive-metrics.ndjson
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/agents-pr-meta.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:
steps:
- name: Resolve PR context
id: resolve
uses: actions/github-script@v8
uses: actions/github-script@v7
Comment thread
stranske marked this conversation as resolved.
Outdated
with:
script: |
const pr = context.payload.issue;
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/autofix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
steps:
- name: Resolve PR context
id: context
uses: actions/github-script@v8
uses: actions/github-script@v7
Comment thread
stranske marked this conversation as resolved.
Outdated
with:
script: |
const pr = context.payload.pull_request;
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 @@ -79,7 +79,7 @@ jobs:

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

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