Fix Claude Code workflow permissions and Node 20 deprecation warning - #3
Merged
Merged
Conversation
Issue #2 failed because claude.yml only granted contents:read, which caused claude-code-action to restrict the agent to a read-only toolset (no Write/Edit tools). The agent had no way to create the requested backend files and errored out after 81 turns.
v4 still bundles a Node 20 runtime, which GitHub Actions now forces onto Node 24 with a deprecation warning on every run. v5 is Node 24-native.
3 tasks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
.github/workflows/claude.ymlgranted onlycontents: read, soclaude-code-actionrestricted the agent to a read-only toolset (noWrite/Edittools). This is why the run triggered by issue Build complete Market Data backend #2 ("Build complete Market Data backend") failed after 81 turns withis_error:trueand never created or pushed any files. Changed tocontents: write.actions/checkout@v4still bundles a Node 20 runtime, which GitHub Actions now forces onto Node 24 with a deprecation warning on every run. Bumped bothclaude.ymlandclaude-code-review.ymltoactions/checkout@v5(Node 24-native) to clear the warning.Test plan
@claude) to confirm the agent can now create/write files and push a branchGenerated with Claude Code
Generated by Claude Code