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

- name: Upload AI analysis artifacts
if: always()
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: ai-code-review-${{ github.event.pull_request.number }}
path: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
- uses: actions/checkout@v6

- name: Cache sim build
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: |
sim/obj_dir
Expand Down Expand Up @@ -93,7 +93,7 @@ jobs:

- name: Upload frame test artifacts on failure
if: failure() && steps.frame_test.outcome == 'failure'
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: frame-test-failure-${{ matrix.compiler }}
path: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
fail_ci_if_error: false

- name: Upload coverage report
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: coverage-report
path: sim/coverage-report/
4 changes: 2 additions & 2 deletions .github/workflows/doc_freshen.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ jobs:

- name: Create Pull Request
if: steps.git_status.outputs.CHANGES == 'true'
uses: peter-evans/create-pull-request@v7
uses: peter-evans/create-pull-request@v8
with:
token: ${{ secrets.GITHUB_TOKEN }}
commit-message: "Auto-freshen stale documentation"
Expand Down Expand Up @@ -120,7 +120,7 @@ jobs:

- name: Upload AI prompts artifact
if: steps.check.outputs.STALE == 'true'
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: ai-update-prompts
path: docs/ai_freshening/
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/performance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
uses: actions/checkout@v6

- name: Cache sim build
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: |
sim/obj_dir
Expand Down Expand Up @@ -82,7 +82,7 @@ jobs:

- name: Upload AI Performance Analysis
if: always()
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: ai-performance-analysis
path: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/todo-automation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
python scripts/todo_sweep.py --report > todo_report.md

- name: Upload TODO report
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: todo-report
path: todo_report.md
2 changes: 1 addition & 1 deletion .github/workflows/top-level-automation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ jobs:

- name: Upload automation report
if: always()
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: automation-report-${{ steps.mode.outputs.mode }}
path: automation_report.md
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/windows_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
./scripts/windows-installer.sh
- name: Upload rebalance report
if: always()
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: todo-rebalance-report
path: out/todo_rebalance_report.txt
Loading