Skip to content
Open
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/vmui.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ jobs:
continue-on-error: true

- name: Annotate Code Linting Results
uses: ataylorme/eslint-annotate-action@v3
uses: ataylorme/eslint-annotate-action@v4
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Comment on lines +71 to 73
Copy link
Contributor

@cubic-dev-ai cubic-dev-ai bot Mar 16, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P1: v4 requires the token input to be named github-token; leaving the old GITHUB_TOKEN key here will break the ESLint annotation step after this upgrade.

Prompt for AI agents
Check if this issue is valid — if so, understand the root cause and fix it. At .github/workflows/vmui.yml, line 71:

<comment>v4 requires the token input to be named `github-token`; leaving the old `GITHUB_TOKEN` key here will break the ESLint annotation step after this upgrade.</comment>

<file context>
@@ -68,7 +68,7 @@ jobs:
 
       - name: Annotate Code Linting Results
-        uses: ataylorme/eslint-annotate-action@v3
+        uses: ataylorme/eslint-annotate-action@v4
         with:
           GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
</file context>
Suggested change
uses: ataylorme/eslint-annotate-action@v4
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
uses: ataylorme/eslint-annotate-action@v4
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
Fix with Cubic

report-json: app/vmui/packages/vmui/vmui-lint-report.json
Expand Down
Loading