Problem
The weekly dependency maintenance workflow (added in #94) fails every run with error: unknown option '--yes'. The Claude Code CLI doesn't have a --yes flag.
Additionally, ANTHROPIC_API_KEY is empty — the repository secret hasn't been configured yet.
Fix
Replace --yes with --dangerously-skip-permissions, which is the correct flag for non-interactive CI environments.
Note: ANTHROPIC_API_KEY must be added as a repository secret (Settings → Secrets and variables → Actions) for the workflow to function.
Problem
The weekly dependency maintenance workflow (added in #94) fails every run with
error: unknown option '--yes'. The Claude Code CLI doesn't have a--yesflag.Additionally,
ANTHROPIC_API_KEYis empty — the repository secret hasn't been configured yet.Fix
Replace
--yeswith--dangerously-skip-permissions, which is the correct flag for non-interactive CI environments.Note:
ANTHROPIC_API_KEYmust be added as a repository secret (Settings → Secrets and variables → Actions) for the workflow to function.