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
4 changes: 2 additions & 2 deletions .github/workflows/claude-plan-to-issues.yml
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ jobs:
echo "task-count=$TASK_COUNT" >> $GITHUB_OUTPUT

- name: Upload plan JSON artifact
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: validated-plan
path: plan.json
Expand Down Expand Up @@ -374,7 +374,7 @@ jobs:
core.setOutput('skipped-issues', JSON.stringify(skippedIssues));

- name: Upload issue creation results
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: issue-results
path: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/dev-to-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ jobs:
fi

- name: Upload production build
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: production-build
path: |
Expand Down Expand Up @@ -202,7 +202,7 @@ jobs:

- name: Upload smoke test results on failure
if: failure()
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: smoke-test-results
path: |
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/reusable-pr-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ jobs:

- name: Upload lint results on failure
if: failure()
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: lint-results
path: |
Expand Down Expand Up @@ -203,7 +203,7 @@ jobs:

- name: Upload type check results on failure
if: failure()
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: typecheck-results
path: |
Expand Down Expand Up @@ -242,7 +242,7 @@ jobs:

- name: Upload test results on failure
if: failure()
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: unit-test-results
path: |
Expand All @@ -253,7 +253,7 @@ jobs:

- name: Upload coverage reports
if: always()
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: coverage-reports
path: |
Expand Down Expand Up @@ -292,7 +292,7 @@ jobs:

- name: Upload integration test results on failure
if: failure()
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: integration-test-results
path: |
Expand Down Expand Up @@ -363,7 +363,7 @@ jobs:

- name: Upload mobile build results on failure
if: failure()
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: mobile-${{ matrix.platform }}-build-results
path: |
Expand Down