🔥 3-day streak
GitHub Actions (GH-200)121 / 142
Question 121 of 142

A workflow triggered by `issues` runs the following step to log the new issue title: ```yaml - name: Log issue run: echo "New issue: ${{ github.event.issue.title }}" ``` A security reviewer flags this as a script injection risk because an attacker can craft an issue title containing shell metacharacters. Which change most effectively eliminates the injection vulnerability while preserving the logging behavior?

Reviewed for accuracy · Report an issueNext question