Update anthropics/claude-code-action action to v1.0.106#4049
Update anthropics/claude-code-action action to v1.0.106#4049renovate[bot] wants to merge 1 commit intomainfrom
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
|
Finished running flow.
|
||||||||||||
|
Important Review skippedBot user detected. To trigger a single review, invoke the You can disable this status message by setting the
Comment |
Check changeset necessityStatus: NOT REQUIRED Reason:
Changeset (copy & paste):<!-- No changeset required: workflow-only change updating GitHub Actions. --> |
7396028 to
af80f04
Compare
af80f04 to
fe776e2
Compare
fe776e2 to
44a248b
Compare
9c1288a to
90c7566
Compare
90c7566 to
10f3a4f
Compare
10f3a4f to
5ae8c15
Compare
5ae8c15 to
66e0595
Compare
There was a problem hiding this comment.
🚩 Pre-existing: Direct interpolation of user-controlled content in prompt field
At .github/workflows/claude-pr-creator.yml:58-63, ${{ github.event.issue.title }} and ${{ github.event.issue.body }} are directly interpolated into the prompt YAML string without toJSON() wrapping. In contrast, the env block at lines 48-50 correctly uses toJSON() for the same values. While this isn't a shell injection (it's a YAML string input to an action, not a run: block), malicious issue content with special YAML characters could potentially break the YAML parsing or cause unexpected prompt content. This is a pre-existing concern unrelated to this PR's changes, and v1.0.29 of the action itself added mitigations for title-based injection vectors.
(Refers to lines 57-67)
Was this helpful? React with 👍 or 👎 to provide feedback.
This PR contains the following updates:
v1.0.12→v1.0.106v1.0.118(+11)Release Notes
anthropics/claude-code-action (anthropics/claude-code-action)
v1.0.106Compare Source
Full Changelog: anthropics/claude-code-action@v1...v1.0.106
v1.0.105Compare Source
What's Changed
New Contributors
Full Changelog: anthropics/claude-code-action@v1...v1.0.105
v1.0.104Compare Source
Full Changelog: anthropics/claude-code-action@v1...v1.0.104
v1.0.103Compare Source
Full Changelog: anthropics/claude-code-action@v1...v1.0.103
v1.0.102Compare Source
What's Changed
Full Changelog: anthropics/claude-code-action@v1...v1.0.102
v1.0.101Compare Source
Full Changelog: anthropics/claude-code-action@v1...v1.0.101
v1.0.100Compare Source
What's Changed
Full Changelog: anthropics/claude-code-action@v1...v1.0.100
v1.0.99Compare Source
Full Changelog: anthropics/claude-code-action@v1...v1.0.99
v1.0.98Compare Source
Full Changelog: anthropics/claude-code-action@v1...v1.0.98
v1.0.97Compare Source
Full Changelog: anthropics/claude-code-action@v1...v1.0.97
v1.0.96Compare Source
What's Changed
New Contributors
Full Changelog: anthropics/claude-code-action@v1...v1.0.96
v1.0.95Compare Source
Full Changelog: anthropics/claude-code-action@v1...v1.0.95
v1.0.94Compare Source
What's Changed
Full Changelog: anthropics/claude-code-action@v1...v1.0.94
v1.0.93Compare Source
Full Changelog: anthropics/claude-code-action@v1...v1.0.93
v1.0.92Compare Source
Full Changelog: anthropics/claude-code-action@v1...v1.0.92
v1.0.91Compare Source
What's Changed
Full Changelog: anthropics/claude-code-action@v1...v1.0.91
v1.0.90Compare Source
What's Changed
Full Changelog: anthropics/claude-code-action@v1...v1.0.90
v1.0.89Compare Source
What's Changed
New Contributors
Full Changelog: anthropics/claude-code-action@v1...v1.0.89
v1.0.88Compare Source
Full Changelog: anthropics/claude-code-action@v1...v1.0.88
v1.0.87Compare Source
Full Changelog: anthropics/claude-code-action@v1...v1.0.87
v1.0.86Compare Source
What's Changed
Full Changelog: anthropics/claude-code-action@v1...v1.0.86
v1.0.85Compare Source
What's Changed
Full Changelog: anthropics/claude-code-action@v1...v1.0.85
v1.0.84Compare Source
What's Changed
Full Changelog: anthropics/claude-code-action@v1...v1.0.84
v1.0.83Compare Source
What's Changed
Full Changelog: anthropics/claude-code-action@v1...v1.0.83
v1.0.82Compare Source
Full Changelog: anthropics/claude-code-action@v1...v1.0.82
v1.0.81Compare Source
Full Changelog: anthropics/claude-code-action@v1...v1.0.81
v1.0.80Compare Source
Full Changelog: anthropics/claude-code-action@v1...v1.0.80
v1.0.79Compare Source
Full Changelog: anthropics/claude-code-action@v1...v1.0.79
v1.0.78Compare Source
Full Changelog: anthropics/claude-code-action@v1...v1.0.78
v1.0.77Compare Source
Subprocess environment scrubbing for untrusted-input workflows
Workflows that configure
allowed_non_write_usersnow automatically getCLAUDE_CODE_SUBPROCESS_ENV_SCRUB=1, which makes Claude Code (v2.1.79+) strip Anthropic and cloud provider credentials from the environment of subprocesses it spawns (Bash tool, hooks, MCP stdio servers). The parent Claude process keeps these vars for its own API calls — only child subprocess environments are scrubbed.Why: Workflows that process untrusted input (issue triage, PR review from non-write users) are exposed to prompt injection. A malicious issue body could trick Claude into running a Bash command that reads
$ANTHROPIC_API_KEYvia shell expansion and leaks it through an observable side channel. Scrubbing the subprocess environment removes the read primitive entirely.What's scrubbed: Anthropic auth tokens, cloud provider credentials, GitHub Actions OIDC and runtime tokens, OTEL auth headers.
What's kept:
GITHUB_TOKEN/GH_TOKEN— so wrapper scripts can still call the GitHub API.Opt out: Set
CLAUDE_CODE_SUBPROCESS_ENV_SCRUB: "0"at the job or step level if your workflow legitimately needs a subprocess to inherit these credentials.No action required for most users — if you've configured
allowed_non_write_users, scrubbing is now on automatically. If your workflow breaks because a subprocess expected inherited credentials, re-inject them explicitly (e.g., via MCP serverenv:config) or use the opt-out.What's Changed
Full Changelog: anthropics/claude-code-action@v1.0.76...v1.0.77
v1.0.76Compare Source
Full Changelog: anthropics/claude-code-action@v1...v1.0.76
v1.0.75Compare Source
Full Changelog: anthropics/claude-code-action@v1...v1.0.75
v1.0.74Compare Source
What's Changed
Full Changelog: anthropics/claude-code-action@v1...v1.0.74
v1.0.73Compare Source
Full Changelog: anthropics/claude-code-action@v1...v1.0.73
v1.0.72Compare Source
What's Changed
Full Changelog: anthropics/claude-code-action@v1...v1.0.72
v1.0.71Compare Source
What's Changed
New Contributors
Full Changelog: anthropics/claude-code-action@v1...v1.0.71
v1.0.70Compare Source
Full Changelog: anthropics/claude-code-action@v1...v1.0.70
v1.0.69Compare Source
Full Changelog: anthropics/claude-code-action@v1...v1.0.69
v1.0.68Compare Source
Full Changelog: anthropics/claude-code-action@v1...v1.0.68
v1.0.67Compare Source
What's Changed
Full Changelog: anthropics/claude-code-action@v1...v1.0.67
v1.0.66Compare Source
What's Changed
Full Changelog: anthropics/claude-code-action@v1...v1.0.66
v1.0.65Compare Source
What's Changed
display_reportoption to false to restrict exposed data by @ddworken in #992Full Changelog: anthropics/claude-code-action@v1...v1.0.65
v1.0.64Compare Source
Full Changelog: anthropics/claude-code-action@v1...v1.0.64
v1.0.63Compare Source
Full Changelog: anthropics/claude-code-action@v1...v1.0.63
v1.0.62Compare Source
What's Changed
Full Changelog: anthropics/claude-code-action@v1...v1.0.62
v1.0.61Compare Source
Full Changelog: anthropics/claude-code-action@v1...v1.0.61
v1.0.60Compare Source
Full Changelog: anthropics/claude-code-action@v1...v1.0.60
v1.0.59Compare Source
Full Changelog: anthropics/claude-code-action@v1...v1.0.59
v1.0.58Compare Source
What's Changed
Full Changelog: anthropics/claude-code-action@v1...v1.0.58
v1.0.57Compare Source
Full Changelog: anthropics/claude-code-action@v1...v1.0.57
v1.0.56Compare Source
What's Changed
Full Changelog: anthropics/claude-code-action@v1...v1.0.56
v1.0.55Compare Source
Full Changelog: anthropics/claude-code-action@v1...v1.0.55
v1.0.54Compare Source
Full Changelog: anthropics/claude-code-action@v1...v1.0.54
v1.0.53Compare Source
What's Changed
Full Changelog: anthropics/claude-code-action@v1...v1.0.53
v1.0.52Compare Source
What's Changed
Full Changelog: anthropics/claude-code-action@v1...v1.0.52
v1.0.51Compare Source
Full Changelog: anthropics/claude-code-action@v1...v1.0.51
v1.0.50Compare Source
What's Changed
Full Changelog: anthropics/claude-code-action@v1...v1.0.50
v1.0.49Compare Source
What's Changed
New Contributors
Full Changelog: anthropics/claude-code-action@v1...v1.0.49
v1.0.48Compare Source
What's Changed
New Contributors
Full Changelog: anthropics/claude-code-action@v1...v1.0.48
v1.0.47Compare Source
What's Changed
New Contributors
Full Changelog: anthropics/claude-code-action@v1...v1.0.47
v1.0.46Compare Source
Full Changelog: anthropics/claude-code-action@v1...v1.0.46
v1.0.45Compare Source
What's Changed
Full Changelog: anthropics/claude-code-action@v1...v1.0.45
v1.0.44Compare Source
What's Changed
Full Changelog: anthropics/claude-code-action@v1...v1.0.44
v1.0.43Compare Source
Full Changelog: anthropics/claude-code-action@v1...v1.0.43
v1.0.42Compare Source
What's Changed
New Contributors
Full Changelog: anthropics/claude-code-action@v1...v1.0.42
v1.0.41Compare Source
Full Changelog: anthropics/claude-code-action@v1...v1.0.41
v1.0.40Compare Source
Full Changelog: anthropics/claude-code-action@v1...v1.0.40
v1.0.39Compare Source
Full Changelog: anthropics/claude-code-action@v1...v1.0.39
v1.0.38Compare Source
Full Changelog: anthropics/claude-code-action@v1...v1.0.38
v1.0.37Compare Source
What's Changed
New Contributors
Full Changelog: anthropics/claude-code-action@v1...v1.0.37
v1.0.36Compare Source
What's Changed
Full Changelog: anthropics/claude-code-action@v1...v1.0.36
v1.0.35Compare Source
What's Changed
New Contributors
Full Changelog: anthropics/claude-code-action@v1...v1.0.35
v1.0.34Compare Source
Full Changelog: anthropics/claude-code-action@v1...v1.0.34
v1.0.33Compare Source
Full Changelog: anthropics/claude-code-action@v1...v1.0.33
v1.0.32Compare Source
Full Changelog: anthropics/claude-code-action@v1...v1.0.32
v1.0.31Compare Source
What's Changed
Full Changelog: anthropics/claude-code-action@v1...v1.0.31
v1.0.30Compare Source
What's Changed
New Contributors
Full Changelog: anthropics/claude-code-action@v1...v1.0.30
v1.0.29Compare Source
What's Changed
New Contributors
Full Changelog: anthropics/claude-code-action@v1...v1.0.29
v1.0.28Compare Source
What's Changed
New Contributors
Full Changelog: anthropics/claude-code-action@v1...v1.0.28
v1.0.27Compare Source
Full Changelog: anthropics/claude-code-action@v1...v1.0.27
v1.0.26Compare Source
What's Changed
Full Changelog: anthropics/claude-code-action@v1...v1.0.26
v1.0.25Compare Source
What's Changed
Full Changelog: anthropics/claude-code-action@v1...v1.0.25
v1.0.24Compare Source
What's Changed
New Contributors
Full Changelog: anthropics/claude-code-action@v1...v1.0.24
v1.0.23Compare Source
What's Changed
commentBodymay benullby @plaflamme in #706New Contributors
Full Changelog: anthropics/claude-code-action@v1...v1.0.23
v1.0.22Compare Source
What's Changed
Full Changelog: anthropics/claude-code-action@v1...v1.0.22
v1.0.21Compare Source
What's Changed
Full Changelog: anthropics/claude-code-action@v1...v1.0.21
v1.0.20Compare Source
What's Changed
Full Changelog: anthropics/claude-code-action@v1...v1.0.20
v1.0.19Compare Source
What's Changed
New Contributors
Full Changelog: anthropics/claude-code-action@v1...v1.0.19
v1.0.18Compare Source
What's Changed
Full Changelog: anthropics/claude-code-action@v1...v1.0.18
v1.0.17Compare Source
What's Changed
**Full Changelog
Configuration
📅 Schedule: (UTC)
* 0-3 1 * *)🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.